From 934372c029403b8719d675b4bd2bb2c2ef6cb45d Mon Sep 17 00:00:00 2001 From: gonzalomartingarcia0 <gonzalomartingarcia0@gmail.com> Date: Mon, 10 Jul 2023 12:00:02 +0200 Subject: [PATCH] add CelebAHQ dataloader --- dataloader/load.py | 58 +- models/all_unets.py | 13 +- wandb/debug-cli.id929844.log | 0 wandb/debug-internal.log | 1 + wandb/debug.log | 1 + wandb/latest-run | 1 + .../files/config.yaml | 36 + .../files/requirements.txt | 175 + .../files/wandb-metadata.json | 292 + .../files/wandb-summary.json | 1 + .../logs/debug-internal.log | 817 + .../run-20230708_232745-humans/logs/debug.log | 38 + .../run-humans.wandb | Bin 0 -> 35326 bytes .../files/config.yaml | 37 + .../files/wandb-summary.json | 1 + .../logs/debug-internal.log | 38453 ++++++++++++++++ .../run-20230708_233359-humans/logs/debug.log | 39 + .../run-humans.wandb | Bin 0 -> 1922097 bytes .../files/config.yaml | 37 + .../files/wandb-summary.json | 1 + .../logs/debug-internal.log | 4147 ++ .../run-20230709_160458-humans/logs/debug.log | 39 + .../run-humans.wandb | Bin 0 -> 199808 bytes wandb/wandb-resume.json | 1 + 24 files changed, 44160 insertions(+), 28 deletions(-) create mode 100644 wandb/debug-cli.id929844.log create mode 120000 wandb/debug-internal.log create mode 120000 wandb/debug.log create mode 120000 wandb/latest-run create mode 100644 wandb/run-20230708_232745-humans/files/config.yaml create mode 100644 wandb/run-20230708_232745-humans/files/requirements.txt create mode 100644 wandb/run-20230708_232745-humans/files/wandb-metadata.json create mode 100644 wandb/run-20230708_232745-humans/files/wandb-summary.json create mode 100644 wandb/run-20230708_232745-humans/logs/debug-internal.log create mode 100644 wandb/run-20230708_232745-humans/logs/debug.log create mode 100644 wandb/run-20230708_232745-humans/run-humans.wandb create mode 100644 wandb/run-20230708_233359-humans/files/config.yaml create mode 100644 wandb/run-20230708_233359-humans/files/wandb-summary.json create mode 100644 wandb/run-20230708_233359-humans/logs/debug-internal.log create mode 100644 wandb/run-20230708_233359-humans/logs/debug.log create mode 100644 wandb/run-20230708_233359-humans/run-humans.wandb create mode 100644 wandb/run-20230709_160458-humans/files/config.yaml create mode 100644 wandb/run-20230709_160458-humans/files/wandb-summary.json create mode 100644 wandb/run-20230709_160458-humans/logs/debug-internal.log create mode 100644 wandb/run-20230709_160458-humans/logs/debug.log create mode 100644 wandb/run-20230709_160458-humans/run-humans.wandb create mode 100644 wandb/wandb-resume.json diff --git a/dataloader/load.py b/dataloader/load.py index 8b9c66e..9133d6d 100644 --- a/dataloader/load.py +++ b/dataloader/load.py @@ -20,55 +20,67 @@ class UnconditionalDataset(Dataset): """ ### Create DataFrame - file_list = [] - for root, dirs, files in os.walk(fpath, topdown=False): - for name in sorted(files): - file_list.append(os.path.join(root, name)) - - df = pd.DataFrame({"Filepath":file_list},) - self.df = df[df["Filepath"].str.endswith(ext)] + #file_list = [] + #for root, dirs, files in os.walk(fpath, topdown=False): + # for name in sorted(files): + # file_list.append(os.path.join(root, name)) + # + #df = pd.DataFrame({"Filepath":file_list},) + #self.df = df[df["Filepath"].str.endswith(ext)] if skip_first_n: self.df = self.df[skip_first_n:] - if train: - df_train = self.df.sample(frac=frac,random_state=2) - self.df = df_train + print(fpath) + if train: + fpath = os.path.join(fpath, 'train') else: - df_train = self.df.sample(frac=frac,random_state=2) - df_test = df.drop(df_train.index) - self.df = df_test + fpath = os.path.join(fpath, 'valid') + + file_list =[] + for root, dirs, files in os.walk(fpath, topdown=False): + for name in sorted(files): + file_list.append(os.path.join(root, name)) + df = pd.DataFrame({"Filepath":file_list},) + self.df = df[df["Filepath"].str.endswith(ext)] if transform: + # for training intermediate_size = 150 theta = np.pi/4 -np.arccos(intermediate_size/(np.sqrt(2)*img_size)) #Check dataloading.ipynb in analysis-depot for more details - transform_rotate = transforms.Compose([transforms.ToTensor(),transforms.Normalize(mean=(0.5,0.5,0.5),std=(0.5,0.5,0.5)), + transform_rotate = transforms.Compose([transforms.ToTensor(), transforms.Resize(intermediate_size,antialias=True), transforms.RandomRotation(theta/np.pi*180,interpolation=transforms.InterpolationMode.BILINEAR), - transforms.CenterCrop(img_size),transforms.RandomHorizontalFlip(p=0.5)]) + transforms.CenterCrop(img_size),transforms.RandomHorizontalFlip(p=0.5), + transforms.Normalize(mean=(0.5,0.5,0.5),std=(0.5,0.5,0.5))]) - transform_randomcrop = transforms.Compose([transforms.ToTensor(),transforms.Normalize(mean=(0.5,0.5,0.5),std=(0.5,0.5,0.5)), - transforms.Resize(intermediate_size),transforms.RandomCrop(img_size),transforms.RandomHorizontalFlip(p=0.5)]) + transform_randomcrop = transforms.Compose([transforms.ToTensor(), + transforms.Resize(intermediate_size, antialias=True), + transforms.RandomCrop(img_size),transforms.RandomHorizontalFlip(p=0.5), + transforms.Normalize(mean=(0.5,0.5,0.5),std=(0.5,0.5,0.5))]) self.transform = transforms.RandomChoice([transform_rotate,transform_randomcrop]) - else : + else : + # for evaluation self.transform = transforms.Compose([transforms.ToTensor(), transforms.Lambda(lambda x: (x * 255).type(torch.uint8)), transforms.Resize(img_size)]) - + + if train==False: + # for testing + self.transform = transforms.Compose([transforms.ToTensor(), + transforms.Resize(intermediate_size, antialias=True), + transforms.Normalize(mean=(0.5,0.5,0.5),std=(0.5,0.5,0.5))]) + def __len__(self): return len(self.df) def __getitem__(self,idx): path = self.df.iloc[idx].Filepath img = Image.open(path) - if img.mode == 'RGBA': - background = Image.new('RGB', img.size, (255, 255, 255)) - background.paste(img, mask=img.split()[3]) - img = background return self.transform(img),0 def tensor2PIL(self,img): diff --git a/models/all_unets.py b/models/all_unets.py index fabd628..dd0e97f 100644 --- a/models/all_unets.py +++ b/models/all_unets.py @@ -44,7 +44,7 @@ class UNet_Res(nn.Module): self.up1 = UpsampleBlock_Res(fctr[1],fctr[0],time_dim) self.up2 = UpsampleBlock_Res(fctr[2],fctr[1],time_dim) self.up3 = UpsampleBlock_Res(fctr[3],fctr[2],time_dim,attention=attention) - self.up4 = UpsampleBlock_Res(fctr[4],fctr[3],time_dim) + self.up4 = UpsampleBlock_Res(fctr[4],fctr[3],time_dim,attention=attention) # final 1x1 conv self.end_conv = nn.Conv2d(fctr[0], channels_out, kernel_size=1,bias=True) @@ -154,22 +154,25 @@ class ConvBlock_Res(nn.Module): self.attlayer = MHABlock(channels_in=channels_out) # Convolution layer 1 - self.conv1 = nn.Conv2d(channels_in, channels_out, kernel_size=3, padding='same', bias=True) + self.conv1 = nn.Conv2d(channels_in, channels_out, kernel_size=3, padding='same', bias=False) self.gn1 = nn.GroupNorm(num_groups, channels_out) self.act1 = nn.SiLU() # Convolution layer 2 - self.conv2 = nn.Conv2d(channels_out, channels_out, kernel_size=3, padding='same', bias=True) + self.conv2 = nn.Conv2d(channels_out, channels_out, kernel_size=3, padding='same', bias=False) self.gn2 = nn.GroupNorm(num_groups, channels_out) self.act2 = nn.SiLU() # Convolution layer 3 - self.conv3 = nn.Conv2d(channels_out, channels_out, kernel_size=3, padding='same', bias=True) + self.conv3 = nn.Conv2d(channels_out, channels_out, kernel_size=3, padding='same', bias=False) self.gn3 = nn.GroupNorm(num_groups, channels_out) self.act3 = nn.SiLU() #Convolution skip - self.res_skip = nn.Conv2d(channels_in,channels_out,kernel_size=1) + self.res_skip = nn.Identity() + if channels_in != channels_out: + self.res_skip = nn.Conv2d(channels_in, channels_out, kernel_size=1) + #self.res_skip = nn.Conv2d(channels_in,channels_out,kernel_size=1) nn.init.xavier_normal_(self.conv1.weight) nn.init.xavier_normal_(self.conv2.weight) diff --git a/wandb/debug-cli.id929844.log b/wandb/debug-cli.id929844.log new file mode 100644 index 0000000..e69de29 diff --git a/wandb/debug-internal.log b/wandb/debug-internal.log new file mode 120000 index 0000000..216ba06 --- /dev/null +++ b/wandb/debug-internal.log @@ -0,0 +1 @@ +run-20230709_160458-humans/logs/debug-internal.log \ No newline at end of file diff --git a/wandb/debug.log b/wandb/debug.log new file mode 120000 index 0000000..87adaeb --- /dev/null +++ b/wandb/debug.log @@ -0,0 +1 @@ +run-20230709_160458-humans/logs/debug.log \ No newline at end of file diff --git a/wandb/latest-run b/wandb/latest-run new file mode 120000 index 0000000..8d94891 --- /dev/null +++ b/wandb/latest-run @@ -0,0 +1 @@ +run-20230709_160458-humans \ No newline at end of file diff --git a/wandb/run-20230708_232745-humans/files/config.yaml b/wandb/run-20230708_232745-humans/files/config.yaml new file mode 100644 index 0000000..b78ad39 --- /dev/null +++ b/wandb/run-20230708_232745-humans/files/config.yaml @@ -0,0 +1,36 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + python_version: 3.10.4 + cli_version: 0.15.3 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1688851665.535903 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 2 + - 13 + - 14 + - 19 + - 23 + 4: 3.10.4 + 5: 0.15.3 + 8: + - 5 +learning_rate: + desc: null + value: 0.0001 +optimizer: + desc: null + value: AdamW diff --git a/wandb/run-20230708_232745-humans/files/requirements.txt b/wandb/run-20230708_232745-humans/files/requirements.txt new file mode 100644 index 0000000..deeaea6 --- /dev/null +++ b/wandb/run-20230708_232745-humans/files/requirements.txt @@ -0,0 +1,175 @@ +alabaster==0.7.12 +appdirs==1.4.4 +asn1crypto==1.5.1 +atomicwrites==1.4.0 +attrs==21.4.0 +babel==2.10.1 +backports.entry-points-selectable==1.1.1 +backports.functools-lru-cache==1.6.4 +bcrypt==3.2.2 +bitstring==3.1.9 +blist==1.3.6 +cachecontrol==0.12.11 +cachy==0.3.0 +certifi==2021.10.8 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.12 +cleo==0.8.1 +click==8.1.3 +clikit==0.6.2 +cmake==3.26.3 +colorama==0.4.4 +contourpy==1.0.7 +crashtest==0.3.1 +cryptography==37.0.1 +cycler==0.11.0 +cython==0.29.28 +decorator==5.1.1 +diffusers==0.16.1 +distlib==0.3.4 +docker-pycreds==0.4.0 +docopt==0.6.2 +docutils==0.17.1 +ecdsa==0.17.0 +editables==0.3 +einops==0.6.1 +filelock==3.6.0 +flit-core==3.7.1 +flit==3.7.1 +fonttools==4.39.4 +fsspec==2022.3.0 +future==0.18.2 +gitdb==4.0.10 +gitpython==3.1.31 +glob2==0.7 +h5py==3.8.0 +html5lib==1.1 +huggingface-hub==0.15.1 +idna==3.3 +imagesize==1.3.0 +importlib-metadata==4.11.3 +importlib-resources==5.7.1 +iniconfig==1.1.1 +intervaltree==3.1.0 +intreehooks==1.0 +ipaddress==1.0.23 +jeepney==0.8.0 +jinja2==3.1.2 +joblib==1.1.0 +jsonschema==4.4.0 +keyring==23.5.0 +keyrings.alt==4.1.0 +kiwisolver==1.4.4 +liac-arff==2.5.0 +lit==16.0.5 +lockfile==0.12.2 +markupsafe==2.1.1 +matplotlib==3.7.1 +mock==4.0.3 +more-itertools==8.12.0 +mpmath==1.3.0 +msgpack==1.0.3 +netaddr==0.8.0 +netifaces==0.11.0 +networkx==3.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.10.3.66 +nvidia-cuda-cupti-cu11==11.7.101 +nvidia-cuda-nvrtc-cu11==11.7.99 +nvidia-cuda-runtime-cu11==11.7.99 +nvidia-cudnn-cu11==8.5.0.96 +nvidia-cufft-cu11==10.9.0.58 +nvidia-curand-cu11==10.2.10.91 +nvidia-cusolver-cu11==11.4.0.1 +nvidia-cusparse-cu11==11.7.4.91 +nvidia-nccl-cu11==2.14.3 +nvidia-nvtx-cu11==11.7.91 +packaging==20.9 +pandas==2.0.2 +paramiko==2.10.4 +pastel==0.2.1 +pathlib2==2.3.7.post1 +pathspec==0.9.0 +pathtools==0.1.2 +pbr==5.8.1 +pexpect==4.8.0 +pillow==9.5.0 +pip==22.0.4 +pkginfo==1.8.2 +platformdirs==2.4.1 +pluggy==1.0.0 +poetry-core==1.0.8 +poetry==1.1.13 +protobuf==4.23.2 +psutil==5.9.0 +ptyprocess==0.7.0 +py-expression-eval==0.3.14 +py==1.11.0 +pyasn1==0.4.8 +pycparser==2.21 +pycrypto==2.6.1 +pygments==2.12.0 +pylev==1.4.0 +pynacl==1.5.0 +pyparsing==3.0.8 +pyrsistent==0.18.1 +pytest==7.1.2 +python-dateutil==2.8.2 +pytoml==0.1.21 +pytz==2022.1 +pyyaml==6.0 +regex==2022.4.24 +requests-toolbelt==0.9.1 +requests==2.27.1 +scandir==1.10.0 +scipy==1.10.1 +secretstorage==3.3.2 +semantic-version==2.9.0 +sentry-sdk==1.25.0 +setproctitle==1.3.2 +setuptools-rust==1.3.0 +setuptools-scm==6.4.2 +setuptools==62.1.0 +shellingham==1.4.0 +simplegeneric==0.8.1 +simplejson==3.17.6 +six==1.16.0 +smmap==5.0.0 +snowballstemmer==2.2.0 +sortedcontainers==2.4.0 +sphinx-bootstrap-theme==0.8.1 +sphinx==4.5.0 +sphinxcontrib-applehelp==1.0.2 +sphinxcontrib-devhelp==1.0.2 +sphinxcontrib-htmlhelp==2.0.0 +sphinxcontrib-jsmath==1.0.1 +sphinxcontrib-qthelp==1.0.3 +sphinxcontrib-serializinghtml==1.1.5 +sphinxcontrib-websupport==1.2.4 +sympy==1.12 +tabulate==0.8.9 +threadpoolctl==3.1.0 +toml==0.10.2 +tomli-w==1.0.0 +tomli==2.0.1 +tomlkit==0.10.2 +torch-fidelity==0.3.0 +torch==2.0.1 +torchaudio==2.0.2 +torchmetrics==0.11.4 +torchvision==0.15.2 +tqdm==4.65.0 +triton==2.0.0 +typing-extensions==4.2.0 +tzdata==2023.3 +ujson==5.2.0 +urllib3==1.26.16 +virtualenv==20.14.1 +wandb==0.15.3 +wcwidth==0.2.5 +webencodings==0.5.1 +wheel==0.37.1 +xlrd==2.0.1 +zipfile36==0.1.3 +zipp==3.8.0 \ No newline at end of file diff --git a/wandb/run-20230708_232745-humans/files/wandb-metadata.json b/wandb/run-20230708_232745-humans/files/wandb-metadata.json new file mode 100644 index 0000000..d159bf2 --- /dev/null +++ b/wandb/run-20230708_232745-humans/files/wandb-metadata.json @@ -0,0 +1,292 @@ +{ + "os": "Linux-4.18.0-425.19.2.el8_7.x86_64-x86_64-with-glibc2.28", + "python": "3.10.4", + "heartbeatAt": "2023-07-08T21:27:46.318010", + "startedAt": "2023-07-08T21:27:45.403194", + "docker": null, + "cuda": null, + "args": [ + "train", + "/home/id929844/experiments_gonzalo/humans/settings" + ], + "state": "running", + "program": "/rwthfs/rz/cluster/home/id929844/diffusion_project/main.py", + "codePath": "main.py", + "git": { + "remote": "https://git.rwth-aachen.de/diffusion-project/diffusion_project.git", + "commit": "910ae79222394141930cd1bf6eafb783b4bd397e" + }, + "email": "gonzalomartingarcia0@gmail.com", + "root": "/rwthfs/rz/cluster/home/id929844/diffusion_project", + "host": "login18-g-1.hpc.itc.rwth-aachen.de", + "username": "id929844", + "executable": "/cvmfs/software.hpc.rwth.de/Linux/RH8/x86_64/intel/skylake_avx512/software/Python/3.10.4-GCCcore-11.3.0/bin/python", + "cpu_count": 48, + "cpu_count_logical": 48, + "cpu_freq": { + "current": 3.6861249999999983, + "min": 3700.0, + "max": 3700.0 + }, + "cpu_freq_per_core": [ + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.377, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + }, + { + "current": 3.7, + "min": 3700.0, + "max": 3700.0 + } + ], + "disk": { + "total": 39.043426513671875, + "used": 18.819751739501953 + }, + "gpu": "Tesla V100-SXM2-16GB", + "gpu_count": 2, + "gpu_devices": [ + { + "name": "Tesla V100-SXM2-16GB", + "memory_total": 17179869184 + }, + { + "name": "Tesla V100-SXM2-16GB", + "memory_total": 17179869184 + } + ], + "memory": { + "total": 376.3241539001465 + } +} diff --git a/wandb/run-20230708_232745-humans/files/wandb-summary.json b/wandb/run-20230708_232745-humans/files/wandb-summary.json new file mode 100644 index 0000000..e8e6418 --- /dev/null +++ b/wandb/run-20230708_232745-humans/files/wandb-summary.json @@ -0,0 +1 @@ +{"loss": 0.07890284061431885, "learning_rate": 9.999996060526846e-05, "epoch": 0, "batch": 118, "_timestamp": 1688851816.1800227, "_runtime": 150.64411973953247, "_step": 118, "_wandb": {"runtime": 150}} \ No newline at end of file diff --git a/wandb/run-20230708_232745-humans/logs/debug-internal.log b/wandb/run-20230708_232745-humans/logs/debug-internal.log new file mode 100644 index 0000000..a42e7c5 --- /dev/null +++ b/wandb/run-20230708_232745-humans/logs/debug-internal.log @@ -0,0 +1,817 @@ +2023-07-08 23:27:45,440 INFO StreamThr :24434 [internal.py:wandb_internal():86] W&B internal server running at pid: 24434, started at: 2023-07-08 23:27:45.437961 +2023-07-08 23:27:45,441 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status +2023-07-08 23:27:45,541 INFO WriterThread:24434 [datastore.py:open_for_write():85] open: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/run-humans.wandb +2023-07-08 23:27:45,544 DEBUG SenderThread:24434 [sender.py:send():375] send: header +2023-07-08 23:27:45,578 DEBUG SenderThread:24434 [sender.py:send():375] send: run +2023-07-08 23:27:45,584 INFO SenderThread:24434 [sender.py:_maybe_setup_resume():761] checking resume status for deep-lab-/Unconditional Landscapes/humans +2023-07-08 23:27:46,179 INFO SenderThread:24434 [dir_watcher.py:__init__():219] watching files in: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files +2023-07-08 23:27:46,180 INFO SenderThread:24434 [sender.py:_start_run_threads():1124] run started: humans with start time 1688851665.535903 +2023-07-08 23:27:46,180 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:27:46,183 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: check_version +2023-07-08 23:27:46,184 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:27:46,184 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: check_version +2023-07-08 23:27:46,258 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: run_start +2023-07-08 23:27:46,263 DEBUG HandlerThread:24434 [system_info.py:__init__():31] System info init +2023-07-08 23:27:46,264 DEBUG HandlerThread:24434 [system_info.py:__init__():46] System info init done +2023-07-08 23:27:46,264 INFO HandlerThread:24434 [system_monitor.py:start():181] Starting system monitor +2023-07-08 23:27:46,264 INFO SystemMonitor:24434 [system_monitor.py:_start():145] Starting system asset monitoring threads +2023-07-08 23:27:46,264 INFO HandlerThread:24434 [system_monitor.py:probe():201] Collecting system info +2023-07-08 23:27:46,264 INFO SystemMonitor:24434 [interfaces.py:start():190] Started cpu monitoring +2023-07-08 23:27:46,265 INFO SystemMonitor:24434 [interfaces.py:start():190] Started disk monitoring +2023-07-08 23:27:46,265 INFO SystemMonitor:24434 [interfaces.py:start():190] Started gpu monitoring +2023-07-08 23:27:46,266 INFO SystemMonitor:24434 [interfaces.py:start():190] Started memory monitoring +2023-07-08 23:27:46,266 INFO SystemMonitor:24434 [interfaces.py:start():190] Started network monitoring +2023-07-08 23:27:46,317 DEBUG HandlerThread:24434 [system_info.py:probe():195] Probing system +2023-07-08 23:27:46,330 DEBUG HandlerThread:24434 [system_info.py:_probe_git():180] Probing git +2023-07-08 23:27:46,361 DEBUG HandlerThread:24434 [system_info.py:_probe_git():188] Probing git done +2023-07-08 23:27:46,361 DEBUG HandlerThread:24434 [system_info.py:probe():240] Probing system done +2023-07-08 23:27:46,361 DEBUG HandlerThread:24434 [system_monitor.py:probe():210] {'os': 'Linux-4.18.0-425.19.2.el8_7.x86_64-x86_64-with-glibc2.28', 'python': '3.10.4', 'heartbeatAt': '2023-07-08T21:27:46.318010', 'startedAt': '2023-07-08T21:27:45.403194', 'docker': None, 'cuda': None, 'args': ('train', '/home/id929844/experiments_gonzalo/humans/settings'), 'state': 'running', 'program': '/rwthfs/rz/cluster/home/id929844/diffusion_project/main.py', 'codePath': 'main.py', 'git': {'remote': 'https://git.rwth-aachen.de/diffusion-project/diffusion_project.git', 'commit': '910ae79222394141930cd1bf6eafb783b4bd397e'}, 'email': 'gonzalomartingarcia0@gmail.com', 'root': '/rwthfs/rz/cluster/home/id929844/diffusion_project', 'host': 'login18-g-1.hpc.itc.rwth-aachen.de', 'username': 'id929844', 'executable': '/cvmfs/software.hpc.rwth.de/Linux/RH8/x86_64/intel/skylake_avx512/software/Python/3.10.4-GCCcore-11.3.0/bin/python', 'cpu_count': 48, 'cpu_count_logical': 48, 'cpu_freq': {'current': 3.6861249999999983, 'min': 3700.0, 'max': 3700.0}, 'cpu_freq_per_core': [{'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.377, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}, {'current': 3.7, 'min': 3700.0, 'max': 3700.0}], 'disk': {'total': 39.043426513671875, 'used': 18.819751739501953}, 'gpu': 'Tesla V100-SXM2-16GB', 'gpu_count': 2, 'gpu_devices': [{'name': 'Tesla V100-SXM2-16GB', 'memory_total': 17179869184}, {'name': 'Tesla V100-SXM2-16GB', 'memory_total': 17179869184}], 'memory': {'total': 376.3241539001465}} +2023-07-08 23:27:46,361 INFO HandlerThread:24434 [system_monitor.py:probe():211] Finished collecting system info +2023-07-08 23:27:46,361 INFO HandlerThread:24434 [system_monitor.py:probe():214] Publishing system info +2023-07-08 23:27:46,361 DEBUG HandlerThread:24434 [system_info.py:_save_pip():51] Saving list of pip packages installed into the current environment +2023-07-08 23:27:46,367 DEBUG HandlerThread:24434 [system_info.py:_save_pip():67] Saving pip packages done +2023-07-08 23:27:46,373 INFO HandlerThread:24434 [system_monitor.py:probe():216] Finished publishing system info +2023-07-08 23:27:46,487 DEBUG SenderThread:24434 [sender.py:send():375] send: files +2023-07-08 23:27:46,487 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-metadata.json with policy now +2023-07-08 23:27:46,495 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:27:46,495 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:27:46,655 DEBUG SenderThread:24434 [sender.py:send():375] send: telemetry +2023-07-08 23:27:46,656 DEBUG SenderThread:24434 [sender.py:send():375] send: telemetry +2023-07-08 23:27:46,656 DEBUG SenderThread:24434 [sender.py:send():375] send: config +2023-07-08 23:27:46,656 DEBUG SenderThread:24434 [sender.py:send():375] send: config +2023-07-08 23:27:46,930 INFO wandb-upload_0:24434 [upload_job.py:push():137] Uploaded file /tmp/id929844/login18-g-1_16644/tmp8yq9kkl_wandb/1uktm71e-wandb-metadata.json +2023-07-08 23:27:47,182 INFO Thread-12 :24434 [dir_watcher.py:_on_file_created():278] file/dir created: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-metadata.json +2023-07-08 23:27:47,182 INFO Thread-12 :24434 [dir_watcher.py:_on_file_created():278] file/dir created: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:27:47,182 INFO Thread-12 :24434 [dir_watcher.py:_on_file_created():278] file/dir created: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/requirements.txt +2023-07-08 23:27:50,657 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:27:55,658 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:00,658 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:01,495 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:28:01,496 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:28:06,628 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:09,297 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:09,298 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:09,298 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:09,326 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:10,197 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:11,681 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:11,681 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:11,681 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:11,681 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:11,685 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:12,198 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:12,715 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:12,716 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:12,716 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:12,720 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:13,198 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:13,877 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:13,878 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:13,878 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:13,885 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:14,199 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:14,877 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:14,878 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:14,878 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:14,883 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:15,200 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:15,971 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:15,971 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:15,971 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:15,979 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:16,200 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:16,495 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:28:16,495 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:28:16,901 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:16,901 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:16,906 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:17,102 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:17,107 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:17,201 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/config.yaml +2023-07-08 23:28:17,201 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:17,950 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:17,950 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:17,951 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:17,959 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:18,201 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:19,039 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:19,040 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:19,040 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:19,045 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:19,202 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:20,046 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:20,046 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:20,046 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:20,055 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:20,202 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:21,248 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:21,249 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:21,249 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:21,257 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:22,204 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:22,257 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:22,375 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:22,376 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:22,376 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:22,383 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:23,204 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:23,363 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:23,364 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:23,364 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:23,372 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:24,205 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:24,421 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:24,422 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:24,422 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:24,427 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:25,205 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:25,418 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:25,419 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:25,419 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:25,428 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:26,206 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:26,397 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:26,398 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:26,398 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:26,402 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:27,207 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:27,402 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:27,547 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:27,548 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:27,548 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:27,555 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:28,207 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:28,644 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:28,645 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:28,645 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:28,685 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:29,208 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:29,727 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:29,727 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:29,728 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:29,767 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:30,208 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:30,925 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:30,926 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:30,926 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:30,930 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:31,209 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:31,495 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:28:31,496 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:28:31,845 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:31,846 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:31,846 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:31,850 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:32,210 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:32,816 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:32,817 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:32,817 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:32,817 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:32,821 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:33,211 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:33,765 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:33,765 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:33,766 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:33,771 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:34,211 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:34,771 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:34,772 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:34,772 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:34,778 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:35,212 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:35,686 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:35,687 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:35,687 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:35,695 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:36,212 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:36,784 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:36,785 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:36,785 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:36,793 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:37,213 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:37,882 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:37,882 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:37,882 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:37,883 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:37,887 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:38,214 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:38,980 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:38,981 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:38,981 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:38,985 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:39,214 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:39,955 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:39,956 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:39,956 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:39,960 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:40,215 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:40,929 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:40,929 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:40,929 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:40,934 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:41,216 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:42,300 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:42,301 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:42,301 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:42,307 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:43,217 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:43,290 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:43,290 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:43,290 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:43,290 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:43,298 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:44,217 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:44,342 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:44,343 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:44,343 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:44,353 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:45,218 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:45,335 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:45,336 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:45,336 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:45,357 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:46,218 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:46,266 DEBUG SystemMonitor:24434 [system_monitor.py:_start():159] Starting system metrics aggregation loop +2023-07-08 23:28:46,267 DEBUG SenderThread:24434 [sender.py:send():375] send: stats +2023-07-08 23:28:46,368 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:46,369 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:46,369 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:46,375 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:46,495 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:28:46,496 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:28:47,219 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:47,542 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:47,543 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:47,543 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:47,561 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:48,220 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:48,561 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:48,671 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:48,672 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:48,672 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:48,700 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:49,220 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:49,832 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:49,833 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:49,833 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:49,844 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:50,221 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:50,912 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:50,912 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:50,912 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:50,931 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:51,221 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:51,938 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:51,938 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:51,938 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:51,944 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:52,222 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:52,860 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:52,860 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:52,861 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:52,868 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:53,223 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:53,868 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:53,975 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:53,976 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:53,976 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:53,982 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:54,223 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:54,932 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:54,933 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:54,933 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:54,941 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:55,224 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:55,980 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:55,981 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:55,981 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:55,988 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:56,224 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:57,150 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:57,151 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:57,151 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:57,155 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:57,225 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:28:58,269 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:58,269 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:58,270 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:58,273 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:59,199 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:28:59,200 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:28:59,200 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:28:59,200 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:28:59,205 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:28:59,226 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:00,278 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:00,279 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:00,279 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:00,283 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:01,161 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:01,162 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:01,162 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:01,165 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:01,228 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:01,496 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:29:01,496 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:29:02,122 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:02,122 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:02,123 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:02,131 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:02,228 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:03,218 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:03,218 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:03,219 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:03,231 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:03,231 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:04,231 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:04,260 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:04,260 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:04,261 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:04,273 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:05,232 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:05,318 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:05,318 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:05,318 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:05,326 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:06,233 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:06,440 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:06,441 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:06,441 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:06,449 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:07,234 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:07,471 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:07,471 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:07,472 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:07,477 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:08,234 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:08,628 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:08,628 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:08,628 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:08,651 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:09,235 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:09,652 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:10,089 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:10,089 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:10,090 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:10,128 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:10,235 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:11,278 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:11,279 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:11,279 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:11,303 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:12,237 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:12,574 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:12,575 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:12,575 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:12,588 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:13,237 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:13,612 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:13,612 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:13,612 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:13,617 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:14,238 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:14,805 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:14,806 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:14,806 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:14,806 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:14,811 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:15,238 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:15,788 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:15,788 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:15,788 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:15,792 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:16,239 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:16,268 DEBUG SenderThread:24434 [sender.py:send():375] send: stats +2023-07-08 23:29:16,496 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:29:16,496 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:29:16,815 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:16,815 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:16,815 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:16,820 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:17,240 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:17,814 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:17,815 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:17,815 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:17,820 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:18,241 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:19,000 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:19,001 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:19,001 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:19,005 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:19,241 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:20,006 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:20,120 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:20,121 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:20,121 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:20,125 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:20,242 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:21,203 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:21,203 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:21,203 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:21,209 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:21,243 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:22,355 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:22,356 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:22,356 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:22,365 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:23,244 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:23,464 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:23,465 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:23,465 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:23,490 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:24,245 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:24,469 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:24,470 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:24,470 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:24,496 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:25,245 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:25,492 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:25,493 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:25,493 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:25,493 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:25,499 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:26,246 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:26,459 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:26,460 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:26,460 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:26,467 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:27,247 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:27,512 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:27,513 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:27,513 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:27,520 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:28,247 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:28,544 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:28,544 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:28,544 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:28,569 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:29,248 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:29,662 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:29,663 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:29,663 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:29,704 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:30,249 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:30,704 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:30,788 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:30,788 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:30,789 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:30,806 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:31,249 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:31,496 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:29:31,496 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:29:31,865 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:31,866 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:31,866 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:31,873 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:32,250 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:32,921 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:32,922 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:32,922 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:32,927 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:33,250 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:34,064 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:34,064 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:34,064 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:34,071 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:34,251 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:34,993 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:34,994 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:34,994 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:34,998 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:35,252 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:35,998 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:36,032 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:36,032 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:36,033 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:36,037 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:36,252 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:36,944 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:36,945 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:36,945 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:36,951 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:37,253 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:37,997 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:37,998 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:37,998 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:38,002 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:38,253 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:39,074 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:39,075 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:39,075 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:39,079 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:39,254 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:40,191 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:40,192 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:40,192 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:40,198 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:40,255 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:41,198 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:41,286 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:41,286 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:41,287 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:41,297 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:42,256 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:42,457 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:42,458 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:42,458 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:42,473 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:43,257 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:43,476 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:43,476 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:43,476 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:43,482 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:44,257 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:44,429 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:44,430 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:44,430 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:44,437 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:45,258 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:45,443 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:45,444 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:45,444 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:45,451 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:46,258 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:46,270 DEBUG SenderThread:24434 [sender.py:send():375] send: stats +2023-07-08 23:29:46,270 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:46,496 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:29:46,496 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:29:46,499 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:46,637 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:46,637 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:46,641 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:47,259 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:47,485 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:47,486 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:47,486 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:47,493 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:48,259 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:48,527 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:48,527 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:48,527 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:48,560 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:49,260 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:49,675 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:49,675 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:49,675 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:49,705 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:50,260 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:51,046 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:51,047 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:51,047 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:51,051 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:51,261 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:52,052 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:52,119 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:52,119 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:52,119 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:52,127 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:52,261 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:53,220 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:53,220 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:53,221 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:53,226 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:53,262 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:54,178 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:54,179 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:54,179 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:54,189 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:54,262 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:55,142 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:55,143 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:55,143 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:55,147 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:55,263 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:56,104 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:56,105 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:56,105 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:56,109 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:56,264 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:57,091 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:57,092 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:57,092 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:57,092 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:29:57,098 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:57,264 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:58,044 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:58,044 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:58,045 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:58,051 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:58,265 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:29:58,988 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:29:58,988 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:29:58,989 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:29:59,004 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:29:59,266 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:00,084 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:00,085 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:00,085 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:00,091 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:00,266 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:01,007 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:01,008 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:01,008 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:01,013 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:01,267 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:01,496 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:30:01,497 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:30:02,108 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:02,108 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:02,109 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:02,109 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:30:02,112 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:02,268 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:03,263 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:03,264 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:03,264 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:03,269 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:03,269 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:04,291 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:04,291 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:04,291 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:04,297 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:05,270 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:05,329 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:05,329 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:05,330 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:05,336 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:06,271 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:06,356 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:06,356 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:06,356 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:06,361 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:07,272 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:07,362 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:30:07,455 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:07,456 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:07,456 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:07,460 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:08,272 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:08,523 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:08,523 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:08,524 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:08,530 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:09,273 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:09,828 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:09,828 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:09,829 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:09,875 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:10,274 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:10,934 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:10,935 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:10,935 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:10,940 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:11,274 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:11,986 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:11,986 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:11,987 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:11,991 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:12,275 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:12,898 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:12,899 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:12,899 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:12,899 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:30:12,903 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:13,275 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:13,974 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:13,975 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:13,975 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:13,981 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:14,276 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:15,034 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:15,034 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:15,035 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:15,041 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:15,276 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:16,180 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:30:16,181 DEBUG SenderThread:24434 [sender.py:send():375] send: history +2023-07-08 23:30:16,181 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:30:16,187 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:16,270 DEBUG SenderThread:24434 [sender.py:send():375] send: stats +2023-07-08 23:30:16,277 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:16,496 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:30:16,497 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:30:16,662 DEBUG SenderThread:24434 [sender.py:send():375] send: telemetry +2023-07-08 23:30:16,663 DEBUG SenderThread:24434 [sender.py:send():375] send: exit +2023-07-08 23:30:16,663 INFO SenderThread:24434 [sender.py:send_exit():598] handling exit code: 1 +2023-07-08 23:30:16,663 INFO SenderThread:24434 [sender.py:send_exit():600] handling runtime: 150 +2023-07-08 23:30:16,682 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:16,682 INFO SenderThread:24434 [sender.py:send_exit():606] send defer +2023-07-08 23:30:16,683 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:16,683 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 0 +2023-07-08 23:30:16,683 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:16,683 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 0 +2023-07-08 23:30:16,683 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 1 +2023-07-08 23:30:16,683 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:16,683 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 1 +2023-07-08 23:30:16,683 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:16,683 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 1 +2023-07-08 23:30:16,683 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 2 +2023-07-08 23:30:16,683 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:16,683 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 2 +2023-07-08 23:30:16,683 INFO HandlerThread:24434 [system_monitor.py:finish():190] Stopping system monitor +2023-07-08 23:30:16,684 INFO HandlerThread:24434 [interfaces.py:finish():202] Joined cpu monitor +2023-07-08 23:30:16,684 DEBUG SystemMonitor:24434 [system_monitor.py:_start():166] Finished system metrics aggregation loop +2023-07-08 23:30:16,684 INFO HandlerThread:24434 [interfaces.py:finish():202] Joined disk monitor +2023-07-08 23:30:16,684 DEBUG SystemMonitor:24434 [system_monitor.py:_start():170] Publishing last batch of metrics +2023-07-08 23:30:16,966 INFO HandlerThread:24434 [interfaces.py:finish():202] Joined gpu monitor +2023-07-08 23:30:16,966 INFO HandlerThread:24434 [interfaces.py:finish():202] Joined memory monitor +2023-07-08 23:30:16,966 INFO HandlerThread:24434 [interfaces.py:finish():202] Joined network monitor +2023-07-08 23:30:16,967 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:16,967 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 2 +2023-07-08 23:30:16,967 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 3 +2023-07-08 23:30:16,967 DEBUG SenderThread:24434 [sender.py:send():375] send: stats +2023-07-08 23:30:16,967 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:16,967 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 3 +2023-07-08 23:30:16,967 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:16,967 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 3 +2023-07-08 23:30:16,967 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 4 +2023-07-08 23:30:16,967 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:16,967 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 4 +2023-07-08 23:30:16,968 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:16,968 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 4 +2023-07-08 23:30:16,968 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 5 +2023-07-08 23:30:16,968 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:16,968 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 5 +2023-07-08 23:30:16,968 DEBUG SenderThread:24434 [sender.py:send():375] send: summary +2023-07-08 23:30:16,973 INFO SenderThread:24434 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:30:16,973 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:16,973 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 5 +2023-07-08 23:30:16,973 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 6 +2023-07-08 23:30:16,973 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:16,973 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 6 +2023-07-08 23:30:16,973 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:16,973 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 6 +2023-07-08 23:30:16,978 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:30:17,199 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 7 +2023-07-08 23:30:17,199 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:17,199 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 7 +2023-07-08 23:30:17,199 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:17,199 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 7 +2023-07-08 23:30:17,199 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 8 +2023-07-08 23:30:17,199 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:17,199 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 8 +2023-07-08 23:30:17,199 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:17,199 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 8 +2023-07-08 23:30:17,277 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/config.yaml +2023-07-08 23:30:17,277 INFO Thread-12 :24434 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:17,479 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 9 +2023-07-08 23:30:17,479 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:17,479 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 9 +2023-07-08 23:30:17,479 DEBUG SenderThread:24434 [sender.py:send():375] send: artifact +2023-07-08 23:30:17,664 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: poll_exit +2023-07-08 23:30:19,119 INFO wandb-upload_1:24434 [upload_job.py:push():95] Uploaded file /home/id929844/.local/share/wandb/artifacts/staging/tmp6dqsurz8 +2023-07-08 23:30:19,146 INFO wandb-upload_0:24434 [upload_job.py:push():95] Uploaded file /home/id929844/.local/share/wandb/artifacts/staging/tmpfyhv2y8t +2023-07-08 23:30:20,289 INFO SenderThread:24434 [sender.py:send_artifact():1474] sent artifact job-https___git.rwth-aachen.de_diffusion-project_diffusion_project.git_main.py - {'id': 'QXJ0aWZhY3Q6NTA4NTQ3MjI2', 'digest': 'bf1568722af4a74888c40644c1b5c7ca', 'state': 'PENDING', 'aliases': [], 'artifactSequence': {'id': 'QXJ0aWZhY3RDb2xsZWN0aW9uOjc4MzI2MzYx', 'latestArtifact': {'id': 'QXJ0aWZhY3Q6NDk4MzI2NjMw', 'versionIndex': 3}}, 'version': 'latest'} +2023-07-08 23:30:20,289 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:20,289 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 9 +2023-07-08 23:30:20,289 INFO SenderThread:24434 [dir_watcher.py:finish():365] shutting down directory watcher +2023-07-08 23:30:21,279 INFO SenderThread:24434 [dir_watcher.py:finish():395] scan: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files +2023-07-08 23:30:21,279 INFO SenderThread:24434 [dir_watcher.py:finish():409] scan save: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/config.yaml config.yaml +2023-07-08 23:30:21,280 INFO SenderThread:24434 [dir_watcher.py:finish():409] scan save: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-metadata.json wandb-metadata.json +2023-07-08 23:30:21,280 INFO SenderThread:24434 [dir_watcher.py:finish():409] scan save: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/requirements.txt requirements.txt +2023-07-08 23:30:21,280 INFO SenderThread:24434 [dir_watcher.py:finish():409] scan save: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json wandb-summary.json +2023-07-08 23:30:21,283 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 10 +2023-07-08 23:30:21,286 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: poll_exit +2023-07-08 23:30:21,287 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:21,291 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 10 +2023-07-08 23:30:21,291 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:21,291 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 10 +2023-07-08 23:30:21,291 INFO SenderThread:24434 [file_pusher.py:finish():167] shutting down file pusher +2023-07-08 23:30:21,738 INFO wandb-upload_0:24434 [upload_job.py:push():137] Uploaded file /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/requirements.txt +2023-07-08 23:30:21,799 INFO wandb-upload_2:24434 [upload_job.py:push():137] Uploaded file /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/wandb-summary.json +2023-07-08 23:30:21,916 INFO wandb-upload_1:24434 [upload_job.py:push():137] Uploaded file /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/files/config.yaml +2023-07-08 23:30:22,116 INFO Thread-11 (_thread_body):24434 [sender.py:transition_state():626] send defer: 11 +2023-07-08 23:30:22,117 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:22,117 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 11 +2023-07-08 23:30:22,117 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:22,117 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 11 +2023-07-08 23:30:22,117 INFO SenderThread:24434 [file_pusher.py:join():172] waiting for file pusher +2023-07-08 23:30:22,117 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 12 +2023-07-08 23:30:22,117 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:22,117 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 12 +2023-07-08 23:30:22,117 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:22,117 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 12 +2023-07-08 23:30:22,306 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 13 +2023-07-08 23:30:22,306 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:22,306 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 13 +2023-07-08 23:30:22,306 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:22,306 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 13 +2023-07-08 23:30:22,306 INFO SenderThread:24434 [sender.py:transition_state():626] send defer: 14 +2023-07-08 23:30:22,306 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: defer +2023-07-08 23:30:22,307 DEBUG SenderThread:24434 [sender.py:send():375] send: final +2023-07-08 23:30:22,307 INFO HandlerThread:24434 [handler.py:handle_request_defer():170] handle defer: 14 +2023-07-08 23:30:22,307 DEBUG SenderThread:24434 [sender.py:send():375] send: footer +2023-07-08 23:30:22,307 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: defer +2023-07-08 23:30:22,307 INFO SenderThread:24434 [sender.py:send_request_defer():622] handle sender defer: 14 +2023-07-08 23:30:22,308 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: poll_exit +2023-07-08 23:30:22,308 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: server_info +2023-07-08 23:30:22,308 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: get_summary +2023-07-08 23:30:22,308 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: poll_exit +2023-07-08 23:30:22,308 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: sampled_history +2023-07-08 23:30:22,308 DEBUG SenderThread:24434 [sender.py:send_request():402] send_request: server_info +2023-07-08 23:30:22,444 DEBUG HandlerThread:24434 [handler.py:handle_request():144] handle_request: shutdown +2023-07-08 23:30:22,444 INFO HandlerThread:24434 [handler.py:finish():842] shutting down handler +2023-07-08 23:30:23,308 INFO WriterThread:24434 [datastore.py:close():298] close: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/run-humans.wandb +2023-07-08 23:30:23,443 INFO SenderThread:24434 [sender.py:finish():1550] shutting down sender +2023-07-08 23:30:23,443 INFO SenderThread:24434 [file_pusher.py:finish():167] shutting down file pusher +2023-07-08 23:30:23,443 INFO SenderThread:24434 [file_pusher.py:join():172] waiting for file pusher diff --git a/wandb/run-20230708_232745-humans/logs/debug.log b/wandb/run-20230708_232745-humans/logs/debug.log new file mode 100644 index 0000000..861c94e --- /dev/null +++ b/wandb/run-20230708_232745-humans/logs/debug.log @@ -0,0 +1,38 @@ +2023-07-08 23:27:45,427 INFO MainThread:16924 [wandb_setup.py:_flush():76] Current SDK version is 0.15.3 +2023-07-08 23:27:45,427 INFO MainThread:16924 [wandb_setup.py:_flush():76] Configure stats pid to 16924 +2023-07-08 23:27:45,427 INFO MainThread:16924 [wandb_setup.py:_flush():76] Loading settings from /home/id929844/.config/wandb/settings +2023-07-08 23:27:45,428 INFO MainThread:16924 [wandb_setup.py:_flush():76] Loading settings from /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/settings +2023-07-08 23:27:45,428 INFO MainThread:16924 [wandb_setup.py:_flush():76] Loading settings from environment variables: {} +2023-07-08 23:27:45,428 INFO MainThread:16924 [wandb_setup.py:_flush():76] Applying setup settings: {'_disable_service': False} +2023-07-08 23:27:45,428 INFO MainThread:16924 [wandb_setup.py:_flush():76] Inferring run settings from compute environment: {'program_relpath': 'main.py', 'program': '/rwthfs/rz/cluster/home/id929844/diffusion_project/main.py'} +2023-07-08 23:27:45,428 INFO MainThread:16924 [wandb_init.py:_log_setup():507] Logging user logs to /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/logs/debug.log +2023-07-08 23:27:45,428 INFO MainThread:16924 [wandb_init.py:_log_setup():508] Logging internal logs to /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_232745-humans/logs/debug-internal.log +2023-07-08 23:27:45,429 INFO MainThread:16924 [wandb_init.py:init():547] calling init triggers +2023-07-08 23:27:45,429 INFO MainThread:16924 [wandb_init.py:init():554] wandb.init called with sweep_config: {} +config: {} +2023-07-08 23:27:45,429 INFO MainThread:16924 [wandb_init.py:init():596] starting backend +2023-07-08 23:27:45,429 INFO MainThread:16924 [wandb_init.py:init():600] setting up manager +2023-07-08 23:27:45,435 INFO MainThread:16924 [backend.py:_multiprocessing_setup():106] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-07-08 23:27:45,535 INFO MainThread:16924 [wandb_init.py:init():606] backend started and connected +2023-07-08 23:27:45,540 INFO MainThread:16924 [wandb_init.py:init():700] updated telemetry +2023-07-08 23:27:45,577 INFO MainThread:16924 [wandb_init.py:init():737] communicating run to backend with 60.0 second timeout +2023-07-08 23:27:46,182 INFO MainThread:16924 [wandb_run.py:_on_init():2177] communicating current version +2023-07-08 23:27:46,252 INFO MainThread:16924 [wandb_run.py:_on_init():2186] got version response upgrade_message: "wandb version 0.15.5 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-07-08 23:27:46,252 INFO MainThread:16924 [wandb_init.py:init():787] starting run threads in backend +2023-07-08 23:27:46,495 INFO MainThread:16924 [wandb_run.py:_console_start():2158] atexit reg +2023-07-08 23:27:46,495 INFO MainThread:16924 [wandb_run.py:_redirect():2013] redirect: SettingsConsole.WRAP_RAW +2023-07-08 23:27:46,495 INFO MainThread:16924 [wandb_run.py:_redirect():2078] Wrapping output streams. +2023-07-08 23:27:46,495 INFO MainThread:16924 [wandb_run.py:_redirect():2103] Redirects installed. +2023-07-08 23:27:46,496 INFO MainThread:16924 [wandb_init.py:init():829] run started, returning control to user process +2023-07-08 23:27:46,496 INFO MainThread:16924 [wandb_config.py:__setitem__():151] config set learning_rate = 0.0001 - <bound method Run._config_callback of <wandb.sdk.wandb_run.Run object at 0x1474039d78e0>> +2023-07-08 23:27:46,496 INFO MainThread:16924 [wandb_run.py:_config_callback():1286] config_cb learning_rate 0.0001 None +2023-07-08 23:27:46,496 INFO MainThread:16924 [wandb_config.py:__setitem__():151] config set optimizer = AdamW - <bound method Run._config_callback of <wandb.sdk.wandb_run.Run object at 0x1474039d78e0>> +2023-07-08 23:27:46,496 INFO MainThread:16924 [wandb_run.py:_config_callback():1286] config_cb optimizer AdamW None +2023-07-08 23:30:16,662 INFO MainThread:16924 [wandb_run.py:_finish():1893] finishing run deep-lab-/Unconditional Landscapes/humans +2023-07-08 23:30:16,662 INFO MainThread:16924 [wandb_run.py:_atexit_cleanup():2127] got exitcode: 1 +2023-07-08 23:30:16,662 INFO MainThread:16924 [wandb_run.py:_restore():2110] restore +2023-07-08 23:30:16,663 INFO MainThread:16924 [wandb_run.py:_restore():2116] restore done +2023-07-08 23:30:23,445 INFO MainThread:16924 [wandb_run.py:_footer_history_summary_info():3469] rendering history +2023-07-08 23:30:23,445 INFO MainThread:16924 [wandb_run.py:_footer_history_summary_info():3501] rendering summary +2023-07-08 23:30:23,450 INFO MainThread:16924 [wandb_run.py:_footer_sync_info():3428] logging synced files diff --git a/wandb/run-20230708_232745-humans/run-humans.wandb b/wandb/run-20230708_232745-humans/run-humans.wandb new file mode 100644 index 0000000000000000000000000000000000000000..b6dafa3475b1f4050ceeafc4fe1ac6dd69e1d3a7 GIT binary patch literal 35326 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 literal 0 HcmV?d00001 diff --git a/wandb/run-20230708_233359-humans/files/config.yaml b/wandb/run-20230708_233359-humans/files/config.yaml new file mode 100644 index 0000000..a1c7468 --- /dev/null +++ b/wandb/run-20230708_233359-humans/files/config.yaml @@ -0,0 +1,37 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + python_version: 3.10.4 + cli_version: 0.15.3 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1688852039.597313 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 2 + - 5 + - 13 + - 14 + - 19 + - 23 + 4: 3.10.4 + 5: 0.15.3 + 8: + - 5 +optimizer: + desc: null + value: AdamW +learning_rate: + desc: null + value: 0.0001 diff --git a/wandb/run-20230708_233359-humans/files/wandb-summary.json b/wandb/run-20230708_233359-humans/files/wandb-summary.json new file mode 100644 index 0000000..bd4c840 --- /dev/null +++ b/wandb/run-20230708_233359-humans/files/wandb-summary.json @@ -0,0 +1 @@ +{"_step": 8568, "batch": 843, "epoch": 9, "_runtime": 3589.605794429779, "_timestamp": 1688855478.0541804, "learning_rate": 9.979864405611205e-05, "loss": 0.006437242031097412, "running_loss": 0.012675670010337863, "_wandb": {"runtime": 3588}} \ No newline at end of file diff --git a/wandb/run-20230708_233359-humans/logs/debug-internal.log b/wandb/run-20230708_233359-humans/logs/debug-internal.log new file mode 100644 index 0000000..1910c46 --- /dev/null +++ b/wandb/run-20230708_233359-humans/logs/debug-internal.log @@ -0,0 +1,38453 @@ +2023-07-08 23:33:59,589 INFO StreamThr :232905 [internal.py:wandb_internal():86] W&B internal server running at pid: 232905, started at: 2023-07-08 23:33:59.587278 +2023-07-08 23:33:59,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status +2023-07-08 23:33:59,605 INFO WriterThread:232905 [datastore.py:open_for_write():85] open: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/run-humans.wandb +2023-07-08 23:33:59,607 DEBUG SenderThread:232905 [sender.py:send():375] send: header +2023-07-08 23:33:59,690 DEBUG SenderThread:232905 [sender.py:send():375] send: run +2023-07-08 23:33:59,695 INFO SenderThread:232905 [sender.py:_maybe_setup_resume():761] checking resume status for deep-lab-/Unconditional Landscapes/humans +2023-07-08 23:33:59,883 INFO SenderThread:232905 [sender.py:_maybe_setup_resume():833] configured resuming with: ResumeState(resumed=True,step=119,history=119,events=5,output=0,runtime=151.148927,wandb_runtime=150,summary={'_step': 118, 'batch': 118, 'epoch': 0, '_wandb': {'runtime': 150}, '_runtime': 150.64411973953247, '_timestamp': 1688851816.1800227, 'learning_rate': 9.999996060526846e-05, 'loss': 0.07890284061431885},config={'_wandb': {'desc': None, 'value': {'t': {'1': [1, 41, 55], '2': [1, 41, 55], '3': [2, 13, 14, 19, 23], '4': '3.10.4', '5': '0.15.3', '8': [5]}, 'framework': 'torch', 'start_time': 1688851665.535903, 'cli_version': '0.15.3', 'is_jupyter_run': False, 'python_version': '3.10.4', 'is_kaggle_kernel': False}}, 'optimizer': {'desc': None, 'value': 'AdamW'}, 'learning_rate': {'desc': None, 'value': 0.0001}}) +2023-07-08 23:34:00,235 INFO SenderThread:232905 [dir_watcher.py:__init__():219] watching files in: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files +2023-07-08 23:34:00,235 INFO SenderThread:232905 [sender.py:_start_run_threads():1124] run started: humans with start time 1688851888.448386 +2023-07-08 23:34:00,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:00,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: check_version +2023-07-08 23:34:00,239 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:00,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: check_version +2023-07-08 23:34:00,314 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: run_start +2023-07-08 23:34:00,327 DEBUG HandlerThread:232905 [system_info.py:__init__():31] System info init +2023-07-08 23:34:00,327 DEBUG HandlerThread:232905 [system_info.py:__init__():46] System info init done +2023-07-08 23:34:00,327 INFO HandlerThread:232905 [system_monitor.py:start():181] Starting system monitor +2023-07-08 23:34:00,327 INFO SystemMonitor:232905 [system_monitor.py:_start():145] Starting system asset monitoring threads +2023-07-08 23:34:00,329 INFO SystemMonitor:232905 [interfaces.py:start():190] Started cpu monitoring +2023-07-08 23:34:00,329 INFO SystemMonitor:232905 [interfaces.py:start():190] Started disk monitoring +2023-07-08 23:34:00,330 INFO SystemMonitor:232905 [interfaces.py:start():190] Started gpu monitoring +2023-07-08 23:34:00,331 INFO SystemMonitor:232905 [interfaces.py:start():190] Started memory monitoring +2023-07-08 23:34:00,331 INFO SystemMonitor:232905 [interfaces.py:start():190] Started network monitoring +2023-07-08 23:34:00,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:34:00,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:34:00,502 DEBUG SenderThread:232905 [sender.py:send():375] send: telemetry +2023-07-08 23:34:00,502 DEBUG SenderThread:232905 [sender.py:send():375] send: telemetry +2023-07-08 23:34:00,502 DEBUG SenderThread:232905 [sender.py:send():375] send: config +2023-07-08 23:34:00,502 DEBUG SenderThread:232905 [sender.py:send():375] send: config +2023-07-08 23:34:01,238 INFO Thread-12 :232905 [dir_watcher.py:_on_file_created():278] file/dir created: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:05,503 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:07,191 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:07,192 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:07,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:07,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:07,254 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:08,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:08,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:08,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:08,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:09,263 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:09,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:09,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:09,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:09,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:10,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:10,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:10,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:10,269 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:10,307 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:11,123 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:11,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:11,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:11,126 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:11,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:11,279 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:12,284 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:12,284 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:12,284 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:12,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:13,164 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:13,164 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:13,164 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:13,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:13,296 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:13,618 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:13,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:13,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:13,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:14,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:14,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:14,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:14,038 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:14,299 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:14,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:14,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:14,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:14,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:14,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:14,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:14,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:14,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:15,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:15,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:15,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:15,238 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:15,301 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:15,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:34:15,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:34:15,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:15,632 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:15,632 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:15,651 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:16,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:16,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:16,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:16,031 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:16,303 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:16,416 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:16,417 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:16,417 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:16,417 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:16,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:16,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:16,797 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:16,797 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:16,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:17,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:17,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:17,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:17,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:17,305 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:17,567 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:17,567 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:17,567 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:17,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:17,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:17,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:17,957 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:17,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:18,317 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:18,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:18,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:18,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:18,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:18,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:18,728 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:18,728 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:18,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:19,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:19,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:19,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:19,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:19,318 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:19,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:19,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:19,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:19,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:19,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:19,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:19,885 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:19,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:20,275 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:20,276 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:20,276 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:20,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:20,318 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:20,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:20,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:20,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:20,671 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:21,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:21,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:21,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:21,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:21,322 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:21,435 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:21,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:21,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:21,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:21,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:21,815 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:21,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:21,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:21,828 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:22,195 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:22,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:22,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:22,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:22,327 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:22,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:22,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:22,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:22,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:22,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:22,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:22,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:22,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:23,339 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:23,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:23,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:23,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:23,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:23,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:23,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:23,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:23,763 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:24,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:24,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:24,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:24,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:24,340 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:24,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:24,520 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:24,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:24,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:24,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:24,897 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:24,897 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:24,908 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:25,274 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:25,275 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:25,275 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:25,288 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:25,341 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:25,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:25,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:25,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:25,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:26,187 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:26,187 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:26,187 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:26,239 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:26,341 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:26,686 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:26,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:26,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:26,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:26,731 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:27,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:27,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:27,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:27,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:27,342 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:27,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:27,685 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:27,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:27,724 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:28,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:28,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:28,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:28,299 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:28,344 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:28,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:28,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:28,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:28,725 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:29,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:29,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:29,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:29,216 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:29,345 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:29,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:29,631 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:29,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:29,675 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:30,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:34:30,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:34:30,369 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:30,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:30,503 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:30,503 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:30,576 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:31,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:31,170 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:31,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:31,223 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:31,369 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:31,868 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:31,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:31,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:32,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:32,169 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:32,373 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/config.yaml +2023-07-08 23:34:32,374 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:32,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:32,617 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:32,617 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:32,692 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:33,206 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:33,207 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:33,207 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:33,275 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:33,374 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:33,847 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:33,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:33,848 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:33,919 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:34,382 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:34,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:34,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:34,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:34,646 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:35,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:35,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:35,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:35,400 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:35,434 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:35,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:35,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:35,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:35,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:36,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:36,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:36,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:36,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:36,402 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:36,613 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:36,614 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:36,614 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:36,626 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:36,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:36,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:36,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:37,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:37,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:37,397 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:37,397 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:37,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:37,405 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:37,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:37,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:37,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:37,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:37,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:38,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:38,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:38,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:38,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:38,409 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:38,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:38,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:38,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:38,568 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:38,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:38,935 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:38,935 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:38,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:39,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:39,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:39,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:39,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:39,409 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:39,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:39,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:39,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:39,715 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:40,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:40,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:40,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:40,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:40,426 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:40,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:40,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:40,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:40,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:40,868 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:40,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:40,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:40,881 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:41,251 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:41,252 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:41,252 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:41,264 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:41,426 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:41,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:41,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:41,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:41,654 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:42,048 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:42,048 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:42,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:42,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:42,437 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:42,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:42,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:42,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:42,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:42,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:42,823 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:42,824 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:42,824 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:42,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:43,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:43,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:43,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:43,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:43,428 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:43,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:43,590 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:43,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:43,602 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:43,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:43,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:43,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:44,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:44,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:44,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:44,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:44,439 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:44,461 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:44,938 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:44,939 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:44,939 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:44,985 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:45,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:34:45,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:34:45,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:45,446 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:45,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:45,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:45,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:45,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:45,953 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:45,953 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:45,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:46,405 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:46,405 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:46,405 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:46,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:46,446 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:46,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:46,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:46,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:46,798 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:47,164 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:47,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:47,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:47,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:47,463 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:47,553 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:47,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:47,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:47,553 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:47,565 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:47,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:47,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:47,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:47,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:48,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:48,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:48,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:48,408 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:48,464 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:48,862 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:48,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:48,863 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:48,911 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:49,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:49,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:49,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:49,458 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:49,464 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:49,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:49,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:49,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:49,984 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:50,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:50,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:50,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:50,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:50,465 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:50,781 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:50,781 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:50,781 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:50,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:51,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:51,199 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:51,199 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:51,223 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:51,466 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:51,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:51,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:51,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:51,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:51,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:51,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:51,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:51,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:52,472 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:52,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:52,523 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:52,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:52,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:52,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:53,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:53,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:53,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:53,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:53,481 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:53,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:53,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:53,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:53,657 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:54,212 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:54,213 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:54,213 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:54,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:54,482 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:54,719 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:54,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:54,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:54,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:55,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:55,234 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:55,234 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:55,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:55,483 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:55,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:55,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:55,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:55,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:56,269 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:56,270 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:56,270 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:56,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:56,487 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:56,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:56,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:56,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:56,854 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:57,285 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:57,286 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:57,286 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:57,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:57,488 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:57,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:57,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:57,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:57,751 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:34:57,781 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:58,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:58,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:58,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:58,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:58,505 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:58,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:58,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:58,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:58,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:58,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:58,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:58,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:59,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:34:59,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:34:59,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:34:59,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:34:59,506 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:34:59,545 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:00,018 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:00,019 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:00,019 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:00,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:00,331 DEBUG SystemMonitor:232905 [system_monitor.py:_start():159] Starting system metrics aggregation loop +2023-07-08 23:35:00,332 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:35:00,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:35:00,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:35:00,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:00,511 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:00,513 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:00,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:00,544 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:01,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:01,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:01,043 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:01,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:01,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:01,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:01,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:01,515 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:01,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:01,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:01,893 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:01,893 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:01,912 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:02,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:02,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:02,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:02,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:02,517 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:02,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:02,685 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:02,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:02,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:03,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:03,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:03,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:03,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:03,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:03,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:03,459 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:03,459 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:03,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:03,517 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:04,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:04,093 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:04,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:04,105 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:04,518 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:05,067 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:05,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:05,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:05,080 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:05,518 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:06,234 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:06,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:06,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:06,286 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:06,519 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:07,320 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:07,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:07,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:07,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:07,520 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:08,374 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:08,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:08,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:08,490 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:08,504 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:08,520 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:09,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:09,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:09,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:09,503 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:09,521 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:10,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:10,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:10,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:10,576 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:11,540 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:11,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:11,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:11,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:11,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:12,541 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:12,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:12,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:12,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:12,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:13,541 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:13,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:13,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:13,896 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:13,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:13,910 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:14,542 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:15,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:15,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:15,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:15,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:15,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:35:15,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:35:15,544 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:16,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:16,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:16,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:16,528 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:16,547 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:18,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:18,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:18,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:18,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:18,550 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:19,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:19,322 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:19,323 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:19,323 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:19,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:19,552 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:20,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:20,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:20,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:20,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:21,563 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:22,127 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:22,127 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:22,127 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:22,146 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:22,567 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:23,088 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:23,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:23,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:23,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:23,567 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:24,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:24,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:24,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:24,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:24,208 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:24,568 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:25,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:25,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:25,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:25,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:25,569 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:26,417 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:26,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:26,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:26,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:26,570 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:27,414 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:27,415 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:27,415 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:27,427 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:27,570 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:28,419 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:28,419 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:28,419 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:28,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:28,571 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:29,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:29,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:29,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:29,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:29,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:29,575 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:30,335 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:35:30,367 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:35:30,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:35:30,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:30,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:30,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:30,545 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:30,575 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:31,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:31,554 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:31,554 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:31,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:31,576 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:32,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:32,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:32,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:32,659 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:33,630 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:33,630 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:33,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:33,630 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:33,663 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:34,630 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:34,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:34,887 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:34,888 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:34,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:34,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:35,635 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:36,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:36,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:36,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:36,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:36,635 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:37,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:37,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:37,240 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:37,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:37,636 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:38,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:38,379 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:38,379 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:38,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:38,636 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:39,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:39,644 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:39,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:39,701 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:39,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:40,646 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:40,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:40,997 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:40,997 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:41,057 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:41,648 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:42,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:42,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:42,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:42,385 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:42,649 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:43,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:43,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:43,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:43,793 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:44,684 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:44,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:44,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:44,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:44,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:44,741 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:45,367 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:35:45,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:35:45,696 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:45,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:45,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:45,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:45,734 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:46,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:46,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:46,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:46,793 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:46,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:47,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:47,867 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:47,867 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:47,867 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:47,888 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:48,706 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:48,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:48,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:48,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:49,000 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:49,706 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:50,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:50,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:50,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:50,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:50,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:50,707 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:51,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:51,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:51,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:51,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:51,707 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:52,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:52,581 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:52,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:52,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:52,708 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:53,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:53,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:53,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:53,723 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:54,736 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:54,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:54,749 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:54,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:54,793 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:55,736 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:55,795 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:35:55,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:55,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:55,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:55,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:56,749 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:56,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:56,793 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:56,793 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:56,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:57,761 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:57,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:57,801 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:57,801 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:57,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:58,773 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:58,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:58,813 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:58,813 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:58,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:35:59,794 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:35:59,882 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:35:59,883 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:35:59,883 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:35:59,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:00,334 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:36:00,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:36:00,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:36:00,796 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:01,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:01,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:01,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:01,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:01,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:01,798 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:02,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:02,650 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:02,650 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:02,714 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:02,802 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:04,150 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:04,150 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:04,151 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:04,208 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:04,810 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:05,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:05,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:05,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:05,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:05,812 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:06,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:06,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:06,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:06,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:06,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:06,815 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:07,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:07,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:07,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:07,654 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:07,816 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:08,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:08,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:08,812 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:08,860 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:09,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:09,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:09,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:09,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:09,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:10,842 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:11,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:11,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:11,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:11,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:11,842 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:12,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:12,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:12,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:12,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:12,056 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:12,843 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:13,173 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:13,174 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:13,174 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:13,186 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:13,848 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:14,295 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:14,295 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:14,295 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:14,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:14,848 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:15,304 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:15,304 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:15,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:15,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:15,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:36:15,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:36:15,849 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:16,211 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:16,212 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:16,212 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:16,222 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:16,849 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:17,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:17,190 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:17,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:17,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:17,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:17,850 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:18,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:18,366 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:18,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:18,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:18,850 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:19,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:19,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:19,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:19,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:19,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:20,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:20,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:20,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:20,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:20,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:21,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:21,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:21,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:21,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:21,854 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:22,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:22,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:22,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:22,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:22,869 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:23,855 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:24,284 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:24,284 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:24,284 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:24,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:24,856 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:25,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:25,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:25,574 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:25,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:25,857 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:26,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:26,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:26,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:27,036 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:27,873 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:28,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:28,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:28,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:28,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:28,369 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:28,876 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:29,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:29,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:29,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:29,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:29,877 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:30,334 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:36:30,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:36:30,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:36:30,500 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:30,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:30,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:30,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:30,877 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:31,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:31,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:31,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:31,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:31,878 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:32,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:32,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:32,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:32,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:32,879 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:33,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:33,492 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:33,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:33,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:33,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:33,879 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:34,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:34,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:34,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:34,472 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:34,880 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:35,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:35,485 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:35,485 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:35,496 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:35,880 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:36,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:36,551 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:36,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:36,596 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:36,881 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:37,733 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:37,734 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:37,734 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:37,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:37,882 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:38,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:38,745 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:38,745 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:38,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:38,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:38,883 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:39,694 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:39,694 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:39,694 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:39,715 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:39,884 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:40,891 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:40,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:40,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:40,936 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:41,921 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:41,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:41,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:41,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:41,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:42,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:42,932 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:42,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:42,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:42,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:43,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:43,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:43,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:43,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:43,869 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:43,932 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:44,871 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:44,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:44,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:44,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:44,933 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:45,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:36:45,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:36:45,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:45,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:45,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:45,881 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:45,934 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:47,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:47,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:47,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:47,277 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:47,935 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:48,654 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:48,654 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:48,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:48,714 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:48,936 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:49,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:50,229 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:50,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:50,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:50,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:50,945 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:51,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:51,593 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:51,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:51,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:51,945 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:52,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:52,782 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:52,782 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:52,799 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:52,946 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:54,010 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:54,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:54,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:54,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:54,958 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:55,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:36:55,274 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:55,275 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:55,275 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:55,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:55,962 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:56,673 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:56,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:56,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:56,738 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:56,967 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:58,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:58,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:58,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:58,151 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:58,971 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:36:59,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:36:59,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:36:59,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:36:59,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:36:59,971 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:00,196 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:00,261 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:00,261 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:00,261 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:00,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:00,335 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:37:00,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:37:00,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:37:00,972 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:01,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:01,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:01,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:01,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:01,973 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:02,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:02,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:02,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:02,234 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:02,973 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:03,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:03,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:03,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:03,165 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:03,974 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:04,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:04,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:04,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:04,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:04,974 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:05,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:05,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:05,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:05,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:05,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:05,975 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:06,481 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:06,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:06,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:06,493 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:06,975 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:07,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:07,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:07,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:07,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:07,976 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:08,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:08,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:08,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:08,765 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:08,976 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:09,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:09,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:09,937 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:09,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:09,996 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:10,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:11,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:11,238 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:11,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:11,289 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:12,004 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:12,693 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:12,694 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:12,694 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:12,723 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:13,005 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:14,074 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:14,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:14,075 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:14,131 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:15,025 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:15,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:37:15,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:37:15,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:15,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:15,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:15,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:16,028 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:16,667 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:16,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:16,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:16,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:16,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:17,028 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:17,823 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:17,824 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:17,824 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:17,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:18,029 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:18,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:18,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:18,800 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:18,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:19,030 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:19,842 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:19,842 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:19,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:19,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:20,030 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:20,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:20,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:20,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:20,990 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:21,031 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:21,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:21,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:21,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:21,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:22,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:22,031 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:23,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:23,124 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:23,124 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:23,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:24,040 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:24,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:24,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:24,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:24,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:25,041 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:25,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:25,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:25,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:25,246 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:26,041 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:26,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:26,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:26,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:26,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:27,042 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:27,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:27,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:27,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:27,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:27,299 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:28,042 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:28,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:28,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:28,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:28,555 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:29,043 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:29,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:29,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:29,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:29,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:30,048 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:30,336 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:37:30,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:37:30,373 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:37:31,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:31,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:31,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:31,163 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:32,065 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:32,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:32,443 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:32,443 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:32,444 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:32,502 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:33,078 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:33,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:33,765 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:33,765 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:33,841 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:34,080 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:35,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:35,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:35,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:35,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:36,086 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:36,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:36,718 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:36,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:36,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:37,090 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:37,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:38,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:38,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:38,021 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:38,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:38,091 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:39,157 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:39,157 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:39,157 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:39,177 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:40,113 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:40,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:40,241 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:40,241 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:40,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:41,114 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:41,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:41,267 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:41,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:41,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:42,114 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:42,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:42,318 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:42,319 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:42,331 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:43,115 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:43,332 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:43,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:43,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:43,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:43,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:44,115 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:44,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:44,464 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:44,464 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:44,484 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:45,116 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:45,373 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:37:45,373 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:37:45,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:45,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:45,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:45,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:46,117 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:46,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:46,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:46,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:46,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:47,117 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:47,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:47,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:47,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:47,753 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:48,118 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:48,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:48,894 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:48,894 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:48,894 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:48,924 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:49,122 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:49,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:49,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:49,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:49,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:50,122 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:51,337 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:51,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:51,337 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:51,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:52,124 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:52,242 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:52,242 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:52,242 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:52,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:53,125 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:53,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:53,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:53,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:53,256 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:54,126 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:54,257 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:37:54,569 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:54,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:54,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:54,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:55,129 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:55,983 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:55,983 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:55,983 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:56,041 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:56,130 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:57,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:57,365 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:57,365 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:57,434 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:58,133 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:58,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:37:58,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:37:58,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:37:58,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:37:59,134 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:37:59,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:00,093 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:00,094 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:00,094 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:00,140 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:00,141 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:00,336 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:38:00,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:38:00,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:38:01,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:01,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:01,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:01,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:02,144 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:02,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:02,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:02,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:02,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:03,144 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:03,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:03,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:03,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:03,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:04,145 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:04,793 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:04,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:04,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:04,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:04,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:05,145 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:05,907 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:05,908 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:05,908 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:05,919 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:06,146 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:06,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:06,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:06,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:06,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:07,146 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:07,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:07,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:07,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:07,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:08,147 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:08,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:08,737 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:08,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:08,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:09,147 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:09,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:09,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:09,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:09,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:10,148 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:10,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:10,742 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:10,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:10,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:10,754 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:11,149 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:11,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:11,795 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:11,795 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:11,808 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:12,149 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:12,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:12,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:12,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:12,891 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:13,150 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:13,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:13,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:13,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:13,840 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:14,150 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:14,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:14,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:14,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:14,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:15,151 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:15,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:38:15,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:38:16,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:16,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:16,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:16,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:16,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:16,151 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:17,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:17,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:17,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:17,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:18,153 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:18,399 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:18,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:18,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:18,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:19,156 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:19,953 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:19,953 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:19,953 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:20,035 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:20,159 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:21,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:21,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:21,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:21,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:21,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:22,161 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:23,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:23,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:23,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:23,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:24,162 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:24,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:24,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:24,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:24,843 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:25,163 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:26,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:26,083 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:26,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:26,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:26,164 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:27,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:27,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:27,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:27,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:27,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:28,107 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:28,108 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:28,108 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:28,119 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:28,179 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:29,120 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:29,121 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:29,121 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:29,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:29,180 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:30,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:30,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:30,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:30,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:30,338 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:38:30,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:38:30,376 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:38:31,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:31,199 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:31,199 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:31,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:31,217 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:32,212 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:32,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:32,213 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:32,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:32,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:32,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:33,204 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:33,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:33,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:33,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:33,457 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:34,204 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:34,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:34,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:34,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:34,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:35,205 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:35,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:35,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:35,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:35,744 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:36,205 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:36,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:36,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:36,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:36,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:37,206 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:38,001 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:38,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:38,258 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:38,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:38,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:39,239 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:39,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:39,269 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:39,269 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:39,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:40,239 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:40,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:40,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:40,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:40,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:41,240 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:41,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:41,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:41,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:41,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:42,241 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:42,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:42,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:42,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:43,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:43,009 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:43,241 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:44,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:44,124 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:44,124 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:44,186 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:44,244 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:45,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:38:45,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:38:45,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:45,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:45,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:45,602 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:46,246 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:46,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:46,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:46,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:46,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:47,247 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:47,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:47,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:47,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:47,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:48,248 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:48,864 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:48,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:48,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:48,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:48,952 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:49,249 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:49,897 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:49,898 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:49,898 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:49,920 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:50,249 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:51,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:51,107 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:51,107 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:51,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:51,251 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:52,274 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:52,274 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:52,274 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:52,345 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:53,258 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:53,597 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:53,597 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:53,597 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:53,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:54,259 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:54,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:54,837 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:54,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:54,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:54,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:55,259 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:55,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:55,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:55,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:55,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:56,261 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:56,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:56,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:56,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:56,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:57,262 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:57,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:57,701 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:57,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:57,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:58,266 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:58,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:58,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:58,812 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:58,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:38:59,266 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:38:59,835 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:38:59,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:38:59,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:38:59,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:38:59,870 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:00,267 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:00,339 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:39:00,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:39:00,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:39:00,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:00,931 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:00,931 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:00,943 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:01,267 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:01,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:01,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:01,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:01,931 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:02,268 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:03,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:03,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:03,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:03,054 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:03,271 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:04,177 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:04,177 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:04,177 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:04,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:04,271 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:05,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:05,349 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:05,349 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:05,349 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:05,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:06,294 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:06,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:06,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:06,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:06,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:07,297 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:08,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:08,052 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:08,052 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:08,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:08,298 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:09,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:09,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:09,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:09,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:09,299 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:10,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:10,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:10,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:10,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:10,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:11,307 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:11,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:11,644 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:11,644 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:11,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:12,308 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:12,624 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:12,625 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:12,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:12,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:13,308 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:13,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:13,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:13,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:13,601 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:14,309 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:14,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:14,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:14,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:14,659 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:15,309 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:15,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:15,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:39:15,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:39:15,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:15,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:15,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:15,698 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:16,311 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:16,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:16,781 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:16,781 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:16,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:17,312 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:17,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:17,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:17,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:17,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:18,312 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:18,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:18,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:18,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:18,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:19,312 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:19,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:19,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:19,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:19,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:20,313 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:20,965 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:21,026 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:21,026 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:21,026 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:21,046 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:21,314 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:22,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:22,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:22,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:22,036 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:22,314 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:23,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:23,067 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:23,067 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:23,079 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:23,315 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:24,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:24,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:24,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:24,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:24,316 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:25,667 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:25,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:25,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:25,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:26,320 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:26,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:27,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:27,184 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:27,184 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:27,249 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:27,326 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:28,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:28,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:28,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:28,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:29,327 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:29,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:29,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:29,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:29,873 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:30,332 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:30,340 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:39:30,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:39:30,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:39:31,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:31,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:31,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:31,634 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:32,341 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:32,635 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:32,908 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:32,909 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:32,909 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:32,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:33,342 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:34,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:34,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:34,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:34,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:34,343 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:35,207 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:35,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:35,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:35,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:35,343 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:36,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:36,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:36,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:36,234 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:36,344 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:37,167 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:37,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:37,168 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:37,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:37,344 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:38,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:38,102 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:38,102 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:38,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:38,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:38,345 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:39,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:39,185 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:39,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:39,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:39,345 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:40,281 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:40,281 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:40,282 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:40,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:40,346 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:41,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:41,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:41,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:41,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:41,347 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:42,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:42,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:42,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:42,429 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:43,371 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:43,402 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:43,403 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:43,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:43,403 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:43,422 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:44,371 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:44,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:44,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:44,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:44,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:45,372 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:45,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:39:45,389 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:39:45,507 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:45,533 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:45,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:45,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:46,373 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:46,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:46,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:46,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:46,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:47,373 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:47,541 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:47,541 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:47,541 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:47,560 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:48,377 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:48,563 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:48,609 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:48,609 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:48,609 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:48,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:49,379 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:50,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:50,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:50,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:50,176 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:50,382 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:51,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:51,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:51,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:51,618 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:52,383 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:52,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:52,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:52,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:52,804 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:53,384 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:53,805 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:54,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:54,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:54,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:54,145 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:54,385 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:55,337 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:55,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:55,337 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:55,384 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:55,386 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:56,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:56,498 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:56,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:56,509 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:57,397 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:57,632 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:57,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:57,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:57,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:58,398 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:58,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:58,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:58,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:58,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:39:58,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:39:59,400 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:39:59,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:39:59,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:39:59,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:39:59,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:00,341 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:40:00,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:40:00,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:40:00,405 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:00,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:00,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:00,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:00,967 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:01,406 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:02,063 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:02,063 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:02,063 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:02,083 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:02,407 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:03,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:03,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:03,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:03,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:03,407 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:04,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:04,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:04,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:04,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:04,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:04,408 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:05,508 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:05,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:05,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:05,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:06,424 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:06,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:06,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:06,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:06,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:07,425 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:07,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:07,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:07,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:07,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:08,425 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:08,550 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:08,550 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:08,550 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:08,592 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:09,426 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:09,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:09,624 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:09,625 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:09,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:09,662 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:10,426 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:10,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:10,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:10,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:10,634 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:11,427 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:11,569 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:11,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:11,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:11,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:12,431 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:12,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:12,581 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:12,581 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:12,591 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:13,445 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:13,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:13,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:13,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:13,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:14,448 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:14,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:14,761 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:14,761 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:14,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:14,828 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:15,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:40:15,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:40:15,449 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:16,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:16,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:16,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:16,095 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:16,450 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:17,332 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:17,332 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:17,332 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:17,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:17,452 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:18,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:18,542 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:18,542 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:18,602 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:19,477 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:19,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:19,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:19,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:19,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:19,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:20,478 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:20,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:20,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:20,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:20,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:21,480 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:21,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:21,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:21,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:21,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:22,481 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:22,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:22,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:22,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:22,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:23,481 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:23,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:23,909 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:23,909 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:23,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:24,483 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:24,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:24,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:24,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:24,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:24,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:25,483 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:26,059 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:26,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:26,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:26,118 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:26,484 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:27,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:27,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:27,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:27,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:27,484 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:28,275 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:28,276 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:28,276 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:28,288 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:28,485 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:29,269 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:29,270 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:29,270 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:29,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:29,485 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:30,211 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:30,211 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:30,211 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:30,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:30,225 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:30,341 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:40:30,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:40:30,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:40:30,489 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:31,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:31,262 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:31,262 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:31,303 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:31,489 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:32,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:32,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:32,484 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:32,531 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:33,543 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:33,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:33,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:33,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:33,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:34,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:34,553 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:34,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:34,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:34,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:35,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:35,443 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:35,443 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:35,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:35,453 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:35,553 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:36,420 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:36,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:36,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:36,436 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:36,554 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:37,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:37,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:37,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:37,838 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:38,560 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:38,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:38,997 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:38,997 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:39,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:39,561 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:40,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:40,528 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:40,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:40,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:40,607 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:41,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:41,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:41,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:41,570 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:41,574 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:42,517 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:42,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:42,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:42,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:42,571 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:43,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:43,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:43,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:43,531 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:43,571 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:44,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:44,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:44,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:44,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:45,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:40:45,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:40:45,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:45,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:45,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:45,591 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:45,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:45,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:46,600 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:46,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:46,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:46,686 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:46,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:47,600 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:48,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:48,179 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:48,179 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:48,232 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:48,601 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:49,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:49,339 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:49,339 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:49,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:49,602 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:50,370 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:50,370 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:50,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:50,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:50,602 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:51,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:51,433 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:51,433 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:51,433 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:51,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:51,603 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:52,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:52,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:52,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:52,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:52,603 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:53,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:53,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:53,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:53,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:53,604 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:54,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:54,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:54,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:54,815 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:55,605 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:55,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:55,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:55,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:55,952 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:56,605 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:56,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:56,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:56,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:56,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:40:56,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:57,606 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:57,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:57,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:57,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:57,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:58,607 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:40:59,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:40:59,116 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:40:59,116 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:40:59,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:40:59,608 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:00,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:00,269 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:00,269 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:00,306 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:00,342 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:41:00,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:41:00,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:41:00,608 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:01,752 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:01,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:01,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:01,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:02,618 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:02,799 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:02,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:02,888 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:02,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:02,914 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:03,619 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:03,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:03,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:03,957 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:04,003 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:04,619 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:05,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:05,163 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:05,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:05,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:05,620 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:06,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:06,153 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:06,153 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:06,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:06,620 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:07,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:07,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:07,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:07,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:07,621 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:08,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:08,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:08,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:08,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:08,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:08,621 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:09,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:09,456 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:09,456 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:09,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:09,622 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:10,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:10,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:10,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:10,568 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:10,622 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:11,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:11,590 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:11,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:11,602 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:11,623 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:12,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:12,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:12,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:12,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:13,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:13,634 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:13,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:13,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:13,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:13,680 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:14,600 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:14,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:14,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:14,613 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:14,634 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:15,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:41:15,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:41:15,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:15,634 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:15,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:15,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:16,508 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:16,508 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:16,508 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:16,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:16,643 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:17,571 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:17,571 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:17,571 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:17,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:17,643 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:18,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:18,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:18,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:18,840 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:18,912 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:19,644 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:20,173 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:20,173 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:20,173 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:20,237 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:20,648 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:21,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:21,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:21,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:21,574 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:21,650 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:22,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:22,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:22,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:23,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:23,652 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:24,026 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:24,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:24,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:24,311 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:24,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:24,656 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:25,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:25,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:25,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:26,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:26,658 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:27,206 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:27,206 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:27,206 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:27,218 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:27,659 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:28,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:28,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:28,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:28,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:28,659 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:29,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:29,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:29,401 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:29,401 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:29,415 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:29,660 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:30,343 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:41:30,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:41:30,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:41:30,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:30,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:30,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:30,650 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:30,660 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:31,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:31,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:31,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:31,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:32,674 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:32,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:32,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:32,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:32,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:33,676 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:33,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:33,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:33,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:33,818 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:34,676 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:34,818 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:34,951 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:34,951 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:34,951 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:34,972 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:35,677 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:36,083 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:36,083 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:36,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:36,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:36,677 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:37,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:37,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:37,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:37,110 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:37,678 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:38,111 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:38,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:38,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:38,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:38,678 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:39,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:39,072 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:39,072 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:39,083 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:39,679 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:40,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:40,111 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:40,111 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:40,111 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:40,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:40,679 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:41,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:41,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:41,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:41,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:41,680 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:42,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:42,629 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:42,630 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:42,686 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:42,687 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:43,980 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:43,980 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:43,980 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:44,052 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:44,688 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:45,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:45,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:41:45,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:41:45,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:45,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:45,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:45,585 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:45,690 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:46,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:46,735 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:46,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:46,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:47,704 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:48,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:48,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:48,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:48,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:48,712 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:49,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:49,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:49,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:49,447 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:49,716 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:50,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:50,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:50,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:50,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:50,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:50,717 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:51,698 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:51,699 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:51,699 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:51,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:51,718 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:52,837 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:52,837 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:52,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:52,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:53,735 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:53,751 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:53,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:53,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:53,763 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:54,666 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:54,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:54,667 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:54,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:54,735 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:55,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:55,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:55,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:55,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:41:55,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:55,736 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:56,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:56,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:56,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:56,864 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:57,741 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:57,883 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:57,884 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:57,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:57,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:58,741 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:58,900 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:58,901 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:58,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:58,912 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:41:59,742 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:41:59,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:41:59,873 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:41:59,873 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:41:59,884 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:00,343 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:42:00,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:42:00,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:42:00,749 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:00,819 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:00,820 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:00,820 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:00,820 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:00,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:01,760 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:01,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:01,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:01,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:01,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:02,760 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:03,143 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:03,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:03,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:03,169 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:03,761 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:04,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:04,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:04,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:04,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:04,761 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:05,563 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:05,563 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:05,563 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:05,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:05,765 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:06,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:06,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:06,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:06,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:06,801 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:07,767 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:07,992 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:07,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:07,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:08,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:08,771 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:09,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:09,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:09,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:09,372 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:09,772 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:10,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:10,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:10,680 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:10,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:10,773 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:11,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:12,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:12,093 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:12,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:12,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:12,780 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:13,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:13,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:13,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:13,398 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:13,781 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:14,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:14,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:14,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:14,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:14,781 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:15,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:42:15,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:42:15,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:15,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:15,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:15,547 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:15,782 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:16,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:16,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:16,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:16,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:16,782 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:17,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:17,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:17,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:17,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:17,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:17,783 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:18,652 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:18,653 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:18,653 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:18,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:18,786 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:19,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:19,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:19,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:19,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:19,786 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:20,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:20,894 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:20,894 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:20,936 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:21,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:22,043 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:22,044 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:22,044 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:22,055 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:22,805 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:23,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:23,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:23,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:23,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:23,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:23,805 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:24,044 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:24,044 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:24,044 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:24,055 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:24,806 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:25,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:25,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:25,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:25,189 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:25,806 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:26,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:26,387 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:26,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:26,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:26,807 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:27,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:27,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:27,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:27,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:27,808 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:28,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:28,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:28,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:28,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:28,543 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:28,808 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:29,469 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:29,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:29,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:29,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:29,808 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:30,344 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:42:30,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:42:30,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:42:30,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:30,528 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:30,528 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:30,560 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:30,809 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:31,693 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:31,694 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:31,694 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:31,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:31,810 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:32,934 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:32,935 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:32,935 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:33,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:33,818 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:34,010 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:34,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:34,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:34,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:34,265 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:34,823 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:35,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:35,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:35,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:35,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:35,824 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:36,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:36,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:36,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:36,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:36,825 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:37,799 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:37,799 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:37,800 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:37,851 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:38,840 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:38,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:38,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:38,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:38,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:39,840 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:39,904 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:39,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:39,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:39,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:39,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:40,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:41,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:41,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:41,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:41,097 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:41,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:42,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:42,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:42,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:42,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:42,843 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:43,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:43,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:43,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:43,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:43,843 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:44,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:44,142 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:44,142 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:44,153 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:44,844 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:45,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:45,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:45,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:45,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:45,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:45,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:42:45,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:42:45,845 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:46,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:46,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:46,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:46,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:46,846 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:47,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:47,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:47,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:47,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:47,846 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:48,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:48,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:48,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:48,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:48,847 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:49,175 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:49,175 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:49,175 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:49,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:49,848 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:50,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:50,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:50,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:50,153 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:50,848 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:51,083 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:51,084 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:51,084 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:51,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:51,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:51,851 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:52,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:52,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:52,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:52,098 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:52,852 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:53,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:53,185 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:53,185 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:53,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:53,854 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:54,453 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:54,453 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:54,453 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:54,524 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:54,858 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:55,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:55,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:55,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:56,034 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:56,881 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:57,035 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:42:57,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:57,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:57,606 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:57,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:57,883 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:42:59,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:42:59,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:42:59,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:42:59,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:42:59,890 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:00,346 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:43:00,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:00,366 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:00,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:00,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:43:00,415 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:00,415 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:43:00,891 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:01,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:01,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:01,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:01,674 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:01,891 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:02,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:02,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:02,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:02,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:02,725 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:02,892 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:03,919 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:03,920 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:03,920 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:03,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:04,916 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:04,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:04,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:04,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:04,956 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:05,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:05,926 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:05,926 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:05,934 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:05,937 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:06,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:06,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:06,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:06,925 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:06,934 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:07,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:07,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:07,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:07,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:07,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:07,935 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:08,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:08,872 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:08,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:08,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:08,935 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:09,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:09,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:09,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:09,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:09,936 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:10,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:10,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:10,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:10,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:10,936 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:11,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:11,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:11,948 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:11,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:12,959 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:12,969 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:12,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:12,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:12,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:12,981 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:13,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:13,935 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:13,935 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:14,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:14,008 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:15,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:15,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:15,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:15,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:15,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:43:15,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:43:16,009 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:16,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:16,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:16,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:16,341 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:17,014 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:17,653 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:17,653 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:17,654 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:17,707 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:18,017 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:18,710 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:18,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:18,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:18,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:18,973 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:19,018 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:20,170 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:20,171 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:20,171 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:20,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:21,027 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:22,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:22,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:22,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:22,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:23,054 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:23,823 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:23,824 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:23,824 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:23,824 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:23,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:24,054 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:24,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:24,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:24,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:24,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:25,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:25,790 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:25,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:25,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:25,801 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:26,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:26,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:26,731 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:26,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:26,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:27,056 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:27,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:27,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:27,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:27,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:28,056 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:28,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:28,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:28,889 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:28,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:28,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:29,057 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:30,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:30,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:30,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:30,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:30,351 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:43:30,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:43:30,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:43:31,069 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:31,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:31,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:31,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:31,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:32,070 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:32,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:32,632 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:32,632 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:32,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:33,070 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:33,600 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:33,600 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:33,600 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:33,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:34,072 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:34,613 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:34,614 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:34,614 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:34,614 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:34,626 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:35,073 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:35,760 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:35,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:35,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:35,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:36,073 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:36,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:36,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:36,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:36,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:37,074 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:37,776 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:37,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:37,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:37,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:38,074 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:39,010 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:39,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:39,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:39,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:39,075 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:40,022 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:40,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:40,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:40,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:40,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:41,082 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:41,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:41,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:41,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:41,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:42,083 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:42,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:42,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:42,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:42,948 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:43,085 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:44,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:44,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:44,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:44,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:45,095 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:45,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:45,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:43:45,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:43:45,898 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:45,898 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:45,898 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:45,963 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:46,110 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:47,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:47,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:47,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:47,524 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:48,113 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:48,653 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:48,653 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:48,653 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:48,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:49,114 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:49,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:49,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:49,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:49,639 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:50,116 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:50,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:50,616 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:50,616 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:50,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:50,629 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:51,116 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:51,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:51,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:51,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:51,540 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:52,117 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:52,513 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:52,514 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:52,514 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:52,523 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:53,117 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:53,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:53,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:53,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:53,627 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:54,118 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:54,703 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:54,703 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:54,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:54,721 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:55,118 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:55,654 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:55,655 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:55,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:55,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:43:55,666 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:56,118 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:56,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:56,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:56,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:56,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:57,119 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:57,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:57,685 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:57,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:57,734 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:58,120 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:58,820 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:58,821 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:58,821 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:58,840 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:43:59,120 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:43:59,907 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:43:59,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:43:59,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:43:59,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:00,121 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:00,352 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:44:00,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:44:00,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:44:00,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:00,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:00,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:00,983 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:01,016 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:01,122 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:02,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:02,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:02,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:02,156 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:03,124 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:03,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:03,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:03,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:03,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:04,125 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:04,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:04,450 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:04,450 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:04,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:05,127 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:05,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:05,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:05,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:05,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:06,128 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:06,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:06,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:06,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:06,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:06,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:07,129 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:08,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:08,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:08,194 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:08,256 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:09,154 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:09,599 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:09,600 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:09,600 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:09,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:10,155 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:10,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:10,742 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:10,742 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:10,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:11,155 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:11,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:11,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:11,797 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:11,797 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:11,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:12,156 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:12,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:12,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:12,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:12,818 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:13,156 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:13,855 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:13,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:13,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:13,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:14,160 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:14,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:14,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:14,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:15,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:15,162 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:15,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:44:15,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:44:16,187 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:16,187 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:16,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:16,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:17,175 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:17,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:17,454 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:17,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:17,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:17,502 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:18,176 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:18,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:18,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:18,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:18,721 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:19,176 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:19,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:19,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:19,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:19,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:20,177 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:20,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:20,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:20,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:20,629 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:21,177 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:21,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:21,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:21,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:21,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:22,178 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:22,555 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:22,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:22,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:22,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:22,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:23,178 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:23,671 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:23,671 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:23,671 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:23,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:24,179 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:24,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:24,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:24,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:24,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:25,179 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:25,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:25,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:25,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:25,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:26,183 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:26,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:26,958 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:26,958 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:27,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:27,184 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:28,002 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:28,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:28,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:28,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:28,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:29,191 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:29,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:29,507 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:29,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:29,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:30,196 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:30,353 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:44:30,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:44:30,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:44:31,000 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:31,000 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:31,000 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:31,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:31,197 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:32,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:32,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:32,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:32,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:33,203 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:33,630 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:34,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:34,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:34,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:34,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:34,208 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:35,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:35,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:35,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:35,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:36,211 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:36,510 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:36,511 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:36,511 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:36,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:37,211 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:37,514 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:37,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:37,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:37,529 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:38,212 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:38,488 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:38,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:38,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:38,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:39,212 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:39,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:39,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:39,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:39,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:39,617 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:40,213 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:40,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:40,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:40,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:40,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:41,213 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:41,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:41,742 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:41,742 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:41,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:42,214 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:42,821 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:42,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:42,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:42,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:43,215 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:44,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:44,027 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:44,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:44,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:44,215 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:45,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:45,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:45,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:45,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:45,259 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:45,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:44:45,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:44:46,254 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:46,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:46,300 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:46,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:46,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:47,254 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:47,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:47,389 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:47,389 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:47,402 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:48,255 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:48,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:48,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:48,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:48,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:49,263 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:49,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:49,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:49,880 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:49,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:50,265 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:50,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:51,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:51,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:51,396 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:51,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:52,268 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:52,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:52,703 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:52,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:52,759 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:53,271 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:53,841 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:53,841 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:53,841 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:53,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:54,275 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:55,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:55,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:55,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:55,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:55,278 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:56,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:44:56,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:56,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:56,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:56,615 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:57,279 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:57,820 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:57,820 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:57,821 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:57,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:58,279 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:58,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:58,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:58,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:58,926 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:44:59,280 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:44:59,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:44:59,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:44:59,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:44:59,955 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:00,281 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:00,353 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:45:00,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:45:00,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:45:00,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:00,884 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:00,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:00,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:01,281 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:01,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:01,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:01,882 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:01,882 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:01,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:02,282 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:03,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:03,109 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:03,109 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:03,121 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:03,286 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:04,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:04,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:04,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:04,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:04,287 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:05,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:05,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:05,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:05,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:05,287 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:06,254 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:06,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:06,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:06,266 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:06,288 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:07,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:07,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:07,319 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:07,319 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:07,330 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:08,300 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:08,412 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:08,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:08,412 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:08,443 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:09,301 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:09,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:09,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:09,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:09,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:10,301 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:10,680 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:10,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:10,680 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:10,701 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:11,302 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:11,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:11,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:11,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:11,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:12,302 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:12,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:12,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:12,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:12,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:12,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:13,306 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:13,515 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:13,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:13,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:13,526 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:14,306 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:14,540 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:14,540 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:14,540 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:14,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:15,309 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:15,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:45:15,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:45:15,742 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:15,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:15,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:15,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:16,312 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:17,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:17,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:17,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:17,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:17,318 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:18,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:18,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:18,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:18,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:18,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:19,320 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:19,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:19,744 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:19,744 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:19,793 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:20,321 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:21,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:21,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:21,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:21,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:21,327 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:22,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:22,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:22,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:22,440 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:23,341 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:23,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:23,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:23,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:23,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:23,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:24,341 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:24,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:24,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:24,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:24,471 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:25,342 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:25,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:25,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:25,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:25,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:26,343 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:26,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:26,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:26,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:26,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:27,343 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:27,729 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:27,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:27,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:27,741 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:28,344 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:28,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:28,629 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:28,629 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:28,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:28,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:29,344 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:29,580 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:29,581 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:29,581 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:29,591 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:30,345 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:30,354 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:45:30,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:45:30,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:45:30,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:30,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:30,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:30,566 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:31,345 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:31,553 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:31,554 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:31,554 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:31,567 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:32,346 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:32,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:32,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:32,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:32,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:33,351 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:33,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:33,639 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:33,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:33,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:33,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:34,352 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:34,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:34,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:34,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:34,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:35,353 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:36,023 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:36,024 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:36,024 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:36,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:36,357 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:37,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:37,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:37,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:37,072 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:37,358 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:37,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:37,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:37,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:38,034 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:38,358 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:39,035 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:39,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:39,060 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:39,060 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:39,127 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:39,363 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:40,315 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:40,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:40,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:40,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:40,381 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:41,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:41,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:41,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:41,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:42,384 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:43,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:43,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:43,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:43,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:43,385 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:44,285 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:44,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:44,639 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:44,639 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:44,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:45,391 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:45,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:45:45,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:45:46,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:46,133 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:46,133 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:46,145 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:46,392 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:47,132 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:47,132 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:47,132 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:47,151 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:47,392 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:48,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:48,266 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:48,266 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:48,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:48,397 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:49,420 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:49,420 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:49,420 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:49,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:49,433 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:50,411 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:50,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:50,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:50,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:50,603 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:51,412 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:51,757 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:51,757 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:51,757 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:51,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:52,412 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:52,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:52,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:52,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:52,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:53,414 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:53,997 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:53,997 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:53,997 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:54,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:54,414 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:55,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:45:55,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:55,069 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:55,069 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:55,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:55,415 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:56,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:56,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:56,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:56,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:56,415 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:57,404 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:57,404 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:57,404 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:57,423 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:57,423 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:58,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:58,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:58,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:58,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:45:59,424 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:45:59,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:45:59,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:45:59,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:45:59,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:00,355 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:46:00,358 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:00,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:46:00,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:46:00,425 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:01,065 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:01,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:01,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:01,084 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:01,425 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:02,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:02,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:02,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:02,146 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:02,426 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:03,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:03,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:03,606 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:03,663 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:04,427 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:05,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:05,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:05,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:05,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:05,429 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:06,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:06,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:06,533 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:06,533 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:06,608 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:07,432 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:07,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:07,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:07,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:07,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:08,433 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:08,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:08,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:08,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:08,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:09,433 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:09,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:09,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:09,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:09,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:10,434 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:11,044 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:11,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:11,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:11,068 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:11,436 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:12,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:12,101 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:12,101 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:12,101 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:12,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:12,437 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:13,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:13,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:13,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:13,225 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:13,437 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:14,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:14,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:14,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:14,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:15,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:46:15,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:46:15,456 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:15,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:15,696 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:15,696 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:15,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:16,457 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:16,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:16,781 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:16,781 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:16,793 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:17,457 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:17,793 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:17,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:17,931 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:17,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:17,943 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:18,458 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:18,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:18,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:18,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:18,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:19,458 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:19,854 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:19,854 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:19,854 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:19,873 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:20,459 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:20,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:20,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:20,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:20,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:21,459 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:21,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:21,754 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:21,754 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:21,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:22,460 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:22,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:22,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:22,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:22,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:23,460 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:23,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:23,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:23,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:23,887 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:23,943 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:24,464 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:25,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:25,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:25,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:25,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:25,465 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:26,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:26,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:26,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:26,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:26,469 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:27,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:27,953 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:27,953 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:28,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:28,474 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:29,023 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:29,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:29,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:29,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:29,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:30,355 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:46:30,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:46:30,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:46:30,480 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:30,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:30,854 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:30,854 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:30,914 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:31,480 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:32,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:32,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:32,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:32,232 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:32,481 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:33,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:33,359 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:33,359 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:33,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:33,482 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:34,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:34,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:34,602 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:34,602 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:34,615 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:35,497 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:35,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:35,498 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:35,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:35,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:36,509 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:36,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:36,523 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:36,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:36,535 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:37,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:37,476 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:37,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:37,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:37,509 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:38,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:38,434 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:38,434 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:38,453 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:38,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:39,409 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:39,409 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:39,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:39,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:39,422 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:39,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:40,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:40,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:40,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:40,455 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:40,511 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:41,377 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:41,377 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:41,377 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:41,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:41,511 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:42,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:42,414 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:42,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:42,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:42,512 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:43,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:43,306 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:43,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:43,318 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:43,513 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:44,342 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:44,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:44,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:44,354 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:44,513 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:45,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:45,335 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:45,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:45,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:45,360 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:45,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:46:45,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:46:45,514 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:46,748 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:46,748 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:46,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:46,808 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:47,525 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:48,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:48,181 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:48,181 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:48,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:48,528 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:49,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:49,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:49,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:49,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:50,536 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:50,819 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:51,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:51,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:51,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:51,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:51,538 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:52,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:52,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:52,744 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:52,803 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:53,544 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:54,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:54,222 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:54,222 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:54,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:54,547 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:55,356 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:55,357 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:55,357 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:55,370 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:55,548 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:56,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:46:56,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:56,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:56,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:56,410 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:56,549 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:57,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:57,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:57,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:57,471 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:57,549 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:58,503 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:58,503 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:58,503 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:58,515 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:58,550 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:46:59,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:46:59,485 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:46:59,485 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:46:59,497 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:46:59,550 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:00,361 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:47:00,399 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:47:00,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:47:00,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:00,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:00,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:00,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:01,472 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:01,473 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:01,473 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:01,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:01,484 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:01,551 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:02,696 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:02,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:02,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:02,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:03,552 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:03,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:03,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:03,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:03,917 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:04,553 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:05,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:05,218 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:05,218 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:05,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:05,553 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:06,261 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:06,261 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:06,262 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:06,273 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:06,554 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:07,275 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:07,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:07,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:07,408 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:07,420 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:07,554 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:08,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:08,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:08,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:08,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:08,555 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:09,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:09,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:09,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:09,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:09,555 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:10,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:10,595 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:10,596 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:10,629 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:11,576 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:12,000 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:12,000 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:12,000 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:12,075 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:12,582 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:13,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:13,293 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:13,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:13,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:13,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:13,585 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:14,661 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:14,661 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:14,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:14,723 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:15,399 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:47:15,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:47:15,607 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:15,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:15,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:15,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:15,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:16,609 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:17,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:17,307 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:17,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:17,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:17,615 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:18,346 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:18,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:18,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:18,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:18,489 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:18,615 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:19,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:19,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:19,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:19,610 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:19,616 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:20,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:20,649 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:20,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:20,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:21,632 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:21,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:21,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:21,640 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:21,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:22,652 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:22,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:22,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:22,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:22,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:23,652 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:23,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:23,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:23,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:23,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:23,797 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:24,668 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:24,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:24,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:24,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:24,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:25,685 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:25,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:25,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:25,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:25,753 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:26,703 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:26,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:26,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:26,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:26,777 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:27,688 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:27,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:27,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:27,699 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:27,703 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:28,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:28,631 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:28,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:28,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:28,704 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:29,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:29,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:29,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:29,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:29,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:29,704 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:30,360 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:47:30,399 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:47:30,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:47:30,862 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:30,862 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:30,862 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:30,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:31,706 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:32,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:32,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:32,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:32,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:32,709 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:33,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:33,265 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:33,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:33,280 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:33,710 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:34,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:34,370 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:34,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:34,440 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:34,711 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:35,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:35,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:35,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:35,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:35,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:36,733 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:37,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:37,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:37,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:37,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:37,735 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:38,373 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:38,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:38,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:38,437 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:38,740 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:40,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:40,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:40,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:40,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:40,754 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:41,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:41,263 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:41,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:41,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:41,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:41,755 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:42,314 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:42,315 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:42,315 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:42,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:42,755 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:43,317 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:43,317 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:43,317 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:43,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:43,756 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:44,257 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:44,257 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:44,257 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:44,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:44,756 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:45,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:45,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:45,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:45,283 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:45,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:47:45,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:47:45,757 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:46,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:46,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:46,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:46,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:46,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:46,758 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:47,241 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:47,242 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:47,242 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:47,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:47,758 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:48,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:48,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:48,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:48,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:48,759 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:49,729 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:49,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:49,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:49,748 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:49,759 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:50,692 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:50,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:50,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:50,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:50,760 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:51,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:51,701 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:51,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:51,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:51,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:51,761 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:52,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:52,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:52,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:52,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:52,761 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:53,826 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:53,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:53,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:53,867 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:54,773 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:55,083 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:55,084 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:55,084 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:55,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:55,774 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:56,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:56,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:56,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:56,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:56,777 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:57,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:47:57,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:57,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:57,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:57,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:57,778 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:58,441 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:58,442 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:58,442 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:58,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:58,779 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:47:59,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:47:59,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:47:59,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:47:59,776 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:47:59,781 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:00,361 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:48:00,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:48:00,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:48:01,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:01,082 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:01,082 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:01,145 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:01,785 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:02,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:02,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:02,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:02,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:02,359 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:02,785 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:03,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:03,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:03,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:03,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:03,786 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:04,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:04,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:04,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:04,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:04,788 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:05,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:05,373 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:05,373 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:05,420 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:05,789 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:06,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:06,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:06,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:06,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:06,789 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:07,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:07,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:07,379 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:07,379 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:07,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:07,790 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:08,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:08,533 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:08,533 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:08,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:08,791 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:09,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:09,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:09,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:09,741 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:09,791 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:10,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:10,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:10,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:10,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:11,792 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:12,061 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:12,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:12,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:12,080 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:12,794 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:13,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:13,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:13,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:13,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:13,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:13,795 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:14,265 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:14,265 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:14,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:14,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:14,795 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:15,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:15,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:15,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:15,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:15,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:48:15,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:48:15,795 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:16,201 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:16,201 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:16,201 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:16,219 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:16,797 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:17,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:17,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:17,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:17,332 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:17,797 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:18,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:18,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:18,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:18,301 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:18,312 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:18,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:19,174 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:19,174 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:19,174 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:19,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:19,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:20,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:20,307 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:20,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:20,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:20,802 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:21,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:21,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:21,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:21,666 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:21,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:22,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:22,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:22,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:22,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:23,810 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:23,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:24,690 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:24,690 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:24,690 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:24,765 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:24,815 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:26,416 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:26,417 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:26,417 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:26,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:26,822 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:27,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:27,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:27,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:27,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:27,826 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:28,891 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:28,892 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:28,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:28,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:29,850 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:29,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:29,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:29,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:29,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:29,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:30,363 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:48:30,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:48:30,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:48:30,856 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:30,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:30,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:30,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:30,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:31,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:31,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:31,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:31,860 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:31,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:32,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:32,746 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:32,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:32,761 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:32,861 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:33,719 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:33,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:33,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:33,731 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:33,861 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:34,707 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:34,707 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:34,707 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:34,726 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:34,862 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:35,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:35,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:35,872 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:35,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:35,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:36,889 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:36,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:36,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:36,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:36,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:37,901 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:37,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:37,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:37,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:37,955 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:38,913 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:38,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:38,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:38,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:38,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:39,913 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:40,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:40,106 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:40,106 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:40,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:40,914 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:41,069 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:41,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:41,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:41,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:41,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:41,919 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:42,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:42,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:42,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:42,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:42,929 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:43,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:43,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:43,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:43,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:43,944 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:45,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:45,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:45,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:45,371 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:45,403 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:48:45,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:48:45,953 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:46,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:47,339 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:47,339 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:47,340 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:47,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:47,963 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:48,958 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:48,958 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:48,958 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:48,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:49,971 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:50,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:50,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:50,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:50,422 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:50,972 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:51,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:51,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:51,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:51,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:51,635 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:51,975 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:53,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:53,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:53,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:53,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:53,977 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:54,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:54,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:54,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:54,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:54,977 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:55,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:55,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:55,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:55,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:55,978 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:56,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:56,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:56,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:56,474 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:56,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:56,498 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:56,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:56,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:56,733 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:56,733 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:56,733 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:56,734 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:48:56,761 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:56,989 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:57,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:57,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:57,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:57,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:57,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:57,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:57,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:57,407 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:57,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:57,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:57,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:57,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:57,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:57,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:57,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:58,000 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:58,016 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:58,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:58,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:58,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:58,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:58,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:58,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:58,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:58,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:58,921 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:58,921 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:58,921 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:58,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:59,004 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:48:59,234 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:59,234 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:59,234 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:59,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:59,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:59,546 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:59,546 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:59,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:48:59,842 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:48:59,842 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:48:59,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:48:59,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:00,009 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:00,170 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:00,170 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:00,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:00,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:00,365 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:49:00,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:49:00,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:49:00,485 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:00,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:00,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:00,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:00,805 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:00,806 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:00,806 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:00,819 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:01,030 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:01,122 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:01,122 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:01,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:01,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:01,433 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:01,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:01,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:01,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:01,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:01,745 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:01,745 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:01,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:01,756 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:02,042 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:02,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:02,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:02,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:02,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:02,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:02,371 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:02,371 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:02,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:02,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:02,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:02,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:02,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:02,980 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:02,980 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:02,980 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:02,999 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:03,042 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:03,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:03,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:03,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:03,307 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:03,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:03,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:03,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:03,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:03,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:03,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:03,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:03,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:04,043 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:04,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:04,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:04,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:04,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:04,546 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:04,546 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:04,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:04,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:04,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:04,850 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:04,850 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:04,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:05,048 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:05,218 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:05,218 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:05,218 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:05,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:05,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:05,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:05,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:05,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:05,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:05,861 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:05,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:05,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:06,054 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:06,184 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:06,184 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:06,185 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:06,217 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:06,503 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:06,503 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:06,504 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:06,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:06,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:06,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:06,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:06,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:06,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:07,065 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:07,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:07,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:07,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:07,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:07,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:07,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:07,646 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:07,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:08,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:08,064 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:08,064 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:08,076 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:08,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:08,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:08,461 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:08,461 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:08,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:08,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:08,779 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:08,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:08,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:09,088 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:09,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:09,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:09,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:09,173 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:09,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:09,448 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:09,448 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:09,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:09,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:09,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:09,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:09,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:10,100 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:10,127 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:10,127 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:10,127 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:10,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:10,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:10,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:10,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:10,525 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:10,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:10,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:10,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:10,898 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:11,103 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:11,281 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:11,282 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:11,282 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:11,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:11,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:11,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:11,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:11,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:12,108 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:12,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:12,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:12,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:12,170 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:12,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:12,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:12,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:12,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:12,561 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:12,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:12,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:12,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:12,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:13,120 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:13,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:13,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:13,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:13,207 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:13,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:13,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:13,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:13,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:13,795 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:13,796 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:13,796 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:13,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:14,101 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:14,101 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:14,101 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:14,120 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:14,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:14,414 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:14,414 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:14,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:14,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:14,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:14,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:14,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:14,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:15,052 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:15,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:15,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:15,065 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:15,121 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:15,367 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:15,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:15,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:15,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:15,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:49:15,408 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:49:15,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:15,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:15,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:15,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:15,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:15,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:15,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:16,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:16,129 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:16,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:16,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:16,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:16,309 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:16,601 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:16,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:16,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:16,621 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:16,926 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:16,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:16,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:16,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:17,138 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:17,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:17,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:17,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:17,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:17,253 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:17,550 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:17,551 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:17,551 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:17,560 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:17,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:17,867 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:17,867 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:17,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:18,150 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:18,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:18,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:18,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:18,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:18,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:18,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:18,479 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:18,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:18,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:18,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:18,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:18,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:19,104 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:19,104 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:19,104 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:19,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:19,150 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:19,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:19,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:19,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:19,438 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:19,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:19,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:19,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:19,748 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:20,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:20,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:20,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:20,058 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:20,155 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:20,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:20,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:20,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:20,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:20,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:20,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:20,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:20,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:20,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:20,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:20,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:20,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:21,159 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:21,296 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:21,297 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:21,297 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:21,308 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:21,606 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:21,606 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:21,606 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:21,627 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:21,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:21,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:21,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:21,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:22,178 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:22,248 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:22,249 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:22,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:22,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:22,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:22,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:22,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:22,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:22,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:22,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:22,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:22,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:22,888 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:23,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:23,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:23,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:23,194 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:23,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:23,500 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:23,500 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:23,500 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:23,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:23,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:23,801 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:23,801 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:23,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:24,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:24,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:24,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:24,160 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:24,195 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:24,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:24,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:24,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:24,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:24,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:24,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:24,757 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:24,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:25,067 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:25,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:25,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:25,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:25,201 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:25,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:25,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:25,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:25,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:25,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:25,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:25,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:25,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:26,009 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:26,009 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:26,009 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:26,021 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:26,206 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:26,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:26,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:26,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:26,332 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:26,632 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:26,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:26,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:26,646 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:26,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:26,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:26,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:26,968 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:27,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:27,261 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:27,261 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:27,262 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:27,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:27,294 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:27,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:27,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:27,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:27,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:27,887 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:27,887 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:27,887 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:27,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:28,191 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:28,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:28,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:28,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:28,241 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:28,507 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:28,507 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:28,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:28,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:28,830 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:28,831 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:28,831 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:28,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:29,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:29,239 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:29,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:29,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:29,318 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:29,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:29,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:29,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:29,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:30,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:30,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:30,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:30,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:30,247 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:30,371 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:49:30,408 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:49:30,408 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:49:30,460 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:30,624 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:30,624 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:30,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:30,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:30,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:30,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:30,829 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:31,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:31,116 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:31,116 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:31,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:31,253 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:31,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:31,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:31,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:31,497 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:31,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:31,779 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:31,779 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:31,842 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:32,137 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:32,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:32,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:32,184 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:32,257 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:32,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:32,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:32,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:32,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:32,514 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:32,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:32,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:32,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:32,968 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:33,275 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:33,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:33,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:33,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:33,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:33,742 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:33,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:33,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:33,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:34,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:34,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:34,055 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:34,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:34,291 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:34,368 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:34,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:34,369 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:34,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:34,680 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:34,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:34,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:34,692 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:34,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:34,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:34,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:35,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:35,297 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:35,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:35,393 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:35,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:35,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:35,706 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:35,706 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:35,706 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:35,721 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:36,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:36,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:36,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:36,036 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:36,310 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:36,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:36,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:36,339 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:36,350 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:36,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:36,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:36,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:36,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:36,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:36,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:36,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:36,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:37,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:37,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:37,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:37,280 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:37,310 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:37,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:37,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:37,588 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:37,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:37,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:37,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:37,888 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:37,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:37,908 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:38,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:38,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:38,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:38,223 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:38,314 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:38,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:38,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:38,528 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:38,540 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:38,841 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:38,841 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:38,841 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:38,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:39,157 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:39,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:39,158 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:39,170 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:39,319 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:39,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:39,472 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:39,472 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:39,489 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:39,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:39,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:39,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:39,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:40,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:40,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:40,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:40,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:40,324 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:40,420 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:40,420 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:40,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:40,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:40,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:40,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:40,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:40,744 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:41,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:41,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:41,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:41,065 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:41,336 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:41,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:41,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:41,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:41,415 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:41,686 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:41,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:41,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:41,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:41,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:41,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:41,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:42,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:42,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:42,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:42,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:42,339 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:42,339 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:42,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:42,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:42,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:42,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:42,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:42,977 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:42,978 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:42,978 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:43,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:43,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:43,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:43,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:43,346 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:43,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:43,676 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:43,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:43,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:43,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:43,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:43,979 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:43,979 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:44,054 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:44,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:44,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:44,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:44,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:44,347 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:44,618 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:44,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:44,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:44,674 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:44,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:44,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:44,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:44,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:45,242 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:45,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:45,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:45,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:45,351 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:45,409 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:49:45,409 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:49:45,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:45,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:45,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:45,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:45,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:45,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:45,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:45,908 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:46,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:46,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:46,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:46,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:46,356 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:46,509 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:46,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:46,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:46,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:46,821 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:46,821 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:46,821 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:46,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:47,129 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:47,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:47,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:47,140 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:47,388 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:47,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:47,445 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:47,445 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:47,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:47,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:47,758 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:47,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:47,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:47,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:48,063 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:48,063 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:48,063 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:48,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:48,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:48,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:48,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:48,396 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:48,399 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:48,689 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:48,689 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:48,689 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:48,707 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:49,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:49,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:49,014 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:49,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:49,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:49,322 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:49,322 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:49,333 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:49,396 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:49,632 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:49,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:49,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:49,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:49,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:49,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:49,949 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:49,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:50,261 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:50,261 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:50,261 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:50,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:50,401 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:50,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:50,588 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:50,588 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:50,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:50,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:50,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:50,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:50,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:51,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:51,232 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:51,232 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:51,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:51,407 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:51,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:51,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:51,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:51,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:51,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:51,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:51,890 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:51,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:52,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:52,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:52,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:52,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:52,424 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:52,512 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:52,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:52,512 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:52,560 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:52,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:52,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:52,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:52,835 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:52,889 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:53,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:53,153 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:53,153 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:53,217 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:53,436 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:53,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:53,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:53,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:53,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:53,790 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:53,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:53,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:53,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:54,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:54,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:54,113 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:54,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:54,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:54,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:54,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:54,450 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:54,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:54,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:54,754 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:54,754 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:54,818 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:55,081 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:55,081 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:55,082 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:55,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:55,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:55,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:55,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:55,445 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:55,454 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:55,751 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:55,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:55,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:55,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:56,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:56,064 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:56,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:56,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:56,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:56,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:56,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:56,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:56,459 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:56,696 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:56,696 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:56,696 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:56,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:57,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:57,007 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:57,007 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:57,020 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:57,324 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:57,324 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:57,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:57,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:57,466 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:57,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:57,639 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:57,639 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:57,651 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:57,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:57,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:57,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:57,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:49:57,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:58,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:58,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:58,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:58,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:58,478 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:58,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:58,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:58,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:58,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:58,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:58,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:58,889 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:58,940 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:59,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:59,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:59,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:59,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:59,490 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:49:59,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:59,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:59,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:59,576 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:49:59,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:49:59,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:49:59,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:49:59,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:00,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:00,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:00,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:00,222 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:00,374 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:50:00,416 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:50:00,416 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:50:00,485 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:00,496 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:00,549 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:00,549 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:00,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:00,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:00,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:00,810 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:00,880 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:01,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:01,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:01,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:01,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:01,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:01,449 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:01,449 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:01,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:01,509 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:01,766 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:01,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:01,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:01,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:02,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:02,076 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:02,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:02,120 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:02,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:02,422 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:02,422 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:02,469 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:02,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:02,748 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:02,748 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:02,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:02,782 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:03,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:03,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:03,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:03,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:03,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:03,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:03,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:03,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:03,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:03,523 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:03,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:03,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:03,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:03,784 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:04,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:04,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:04,078 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:04,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:04,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:04,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:04,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:04,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:04,528 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:04,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:04,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:04,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:04,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:05,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:05,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:05,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:05,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:05,325 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:05,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:05,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:05,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:05,535 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:05,650 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:05,650 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:05,650 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:05,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:05,958 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:05,959 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:05,959 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:05,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:06,269 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:06,269 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:06,269 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:06,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:06,547 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:06,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:06,593 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:06,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:06,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:06,908 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:06,909 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:06,909 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:06,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:07,212 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:07,212 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:07,212 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:07,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:07,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:07,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:07,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:07,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:07,548 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:07,842 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:07,842 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:07,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:07,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:08,171 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:08,171 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:08,172 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:08,172 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:08,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:08,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:08,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:08,484 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:08,495 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:08,549 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:08,789 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:08,789 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:08,789 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:08,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:09,110 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:09,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:09,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:09,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:09,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:09,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:09,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:09,431 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:09,556 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:09,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:09,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:09,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:09,742 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:10,044 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:10,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:10,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:10,057 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:10,357 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:10,357 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:10,358 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:10,369 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:10,564 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:10,671 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:10,671 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:10,671 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:10,683 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:10,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:10,983 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:10,983 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:10,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:11,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:11,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:11,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:11,307 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:11,576 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:11,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:11,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:11,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:11,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:11,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:11,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:11,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:11,943 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:12,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:12,238 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:12,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:12,251 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:12,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:12,551 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:12,551 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:12,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:12,576 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:12,861 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:12,862 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:12,862 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:12,873 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:13,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:13,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:13,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:13,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:13,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:13,490 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:13,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:13,490 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:13,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:13,584 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:13,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:13,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:13,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:13,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:14,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:14,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:14,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:14,231 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:14,517 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:14,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:14,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:14,586 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:14,586 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:14,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:14,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:14,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:14,913 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:15,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:15,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:15,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:15,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:15,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:50:15,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:50:15,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:15,551 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:15,551 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:15,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:15,607 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:15,864 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:15,864 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:15,864 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:15,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:16,184 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:16,184 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:16,184 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:16,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:16,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:16,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:16,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:16,588 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:16,609 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:16,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:16,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:16,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:16,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:17,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:17,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:17,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:17,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:17,614 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:17,747 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:17,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:17,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:17,804 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:18,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:18,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:18,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:18,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:18,191 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:18,571 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:18,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:18,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:18,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:18,630 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:18,969 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:18,969 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:18,969 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:19,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:19,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:19,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:19,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:19,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:19,637 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:19,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:19,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:19,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:19,835 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:20,093 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:20,094 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:20,094 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:20,151 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:20,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:20,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:20,413 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:20,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:20,653 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:20,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:20,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:20,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:20,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:21,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:21,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:21,052 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:21,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:21,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:21,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:21,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:21,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:21,665 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:21,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:21,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:21,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:21,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:22,067 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:22,067 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:22,067 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:22,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:22,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:22,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:22,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:22,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:22,679 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:22,768 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:22,768 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:22,768 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:22,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:23,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:23,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:23,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:23,219 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:23,220 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:23,441 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:23,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:23,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:23,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:23,700 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:23,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:23,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:23,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:23,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:24,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:24,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:24,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:24,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:24,368 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:24,368 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:24,368 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:24,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:24,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:24,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:24,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:24,699 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:24,700 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:24,992 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:24,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:24,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:25,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:25,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:25,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:25,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:25,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:25,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:25,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:25,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:25,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:25,709 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:25,920 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:25,921 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:25,921 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:25,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:26,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:26,231 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:26,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:26,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:26,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:26,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:26,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:26,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:26,714 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:26,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:26,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:26,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:26,870 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:27,164 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:27,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:27,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:27,176 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:27,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:27,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:27,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:27,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:27,729 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:27,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:27,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:27,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:27,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:28,104 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:28,104 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:28,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:28,116 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:28,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:28,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:28,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:28,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:28,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:28,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:28,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:28,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:28,734 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:28,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:29,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:29,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:29,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:29,050 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:29,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:29,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:29,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:29,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:29,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:29,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:29,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:29,680 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:29,735 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:29,966 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:29,966 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:29,966 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:29,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:30,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:30,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:30,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:30,299 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:30,375 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:50:30,420 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:50:30,420 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:50:30,606 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:30,606 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:30,606 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:30,618 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:30,741 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:30,904 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:30,904 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:30,904 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:30,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:31,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:31,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:31,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:31,231 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:31,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:31,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:31,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:31,546 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:31,752 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:31,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:31,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:31,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:31,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:32,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:32,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:32,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:32,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:32,458 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:32,459 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:32,459 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:32,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:32,757 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:32,757 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:32,758 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:32,768 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:32,779 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:33,073 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:33,074 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:33,074 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:33,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:33,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:33,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:33,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:33,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:33,698 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:33,698 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:33,698 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:33,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:33,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:33,758 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:34,010 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:34,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:34,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:34,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:34,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:34,318 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:34,318 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:34,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:34,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:34,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:34,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:34,639 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:34,762 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:34,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:34,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:34,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:34,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:35,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:35,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:35,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:35,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:35,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:35,558 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:35,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:35,576 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:35,778 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:35,867 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:35,868 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:35,868 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:35,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:36,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:36,176 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:36,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:36,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:36,472 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:36,472 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:36,472 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:36,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:36,797 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:36,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:36,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:36,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:36,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:37,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:37,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:37,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:37,299 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:37,598 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:37,598 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:37,598 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:37,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:37,802 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:37,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:37,959 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:37,959 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:38,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:38,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:38,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:38,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:38,455 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:38,760 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:38,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:38,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:38,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:38,802 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:38,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:39,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:39,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:39,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:39,248 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:39,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:39,620 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:39,620 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:39,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:39,811 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:40,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:40,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:40,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:40,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:40,539 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:40,540 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:40,540 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:40,608 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:40,820 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:40,966 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:40,967 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:40,967 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:41,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:41,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:41,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:41,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:41,503 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:41,832 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:41,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:41,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:41,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:41,926 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:42,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:42,309 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:42,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:42,372 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:42,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:42,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:42,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:42,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:42,862 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:43,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:43,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:43,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:43,296 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:43,654 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:43,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:43,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:43,742 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:43,871 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:44,204 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:44,204 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:44,204 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:44,204 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:44,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:44,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:44,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:44,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:44,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:44,885 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:45,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:45,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:45,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:45,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:45,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:50:45,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:50:45,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:45,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:45,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:45,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:45,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:45,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:45,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:45,885 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:45,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:46,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:46,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:46,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:46,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:46,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:46,506 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:46,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:46,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:46,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:46,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:46,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:46,829 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:46,886 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:47,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:47,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:47,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:47,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:47,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:47,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:47,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:47,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:47,747 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:47,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:47,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:47,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:47,897 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:48,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:48,057 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:48,057 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:48,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:48,377 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:48,377 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:48,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:48,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:48,686 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:48,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:48,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:48,698 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:48,908 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:48,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:48,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:48,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:49,004 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:49,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:49,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:49,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:49,304 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:49,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:49,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:49,615 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:49,615 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:49,626 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:49,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:49,914 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:49,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:49,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:49,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:50,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:50,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:50,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:50,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:50,541 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:50,542 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:50,542 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:50,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:50,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:50,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:50,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:50,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:50,914 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:51,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:51,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:51,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:51,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:51,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:51,472 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:51,472 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:51,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:51,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:51,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:51,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:51,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:51,920 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:52,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:52,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:52,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:52,110 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:52,409 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:52,409 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:52,409 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:52,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:52,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:52,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:52,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:52,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:52,939 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:53,031 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:53,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:53,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:53,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:53,342 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:53,342 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:53,342 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:53,354 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:53,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:53,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:53,652 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:53,663 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:53,951 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:53,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:53,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:53,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:53,974 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:54,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:54,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:54,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:54,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:54,580 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:54,581 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:54,581 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:54,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:54,592 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:54,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:54,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:54,890 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:54,901 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:54,951 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:55,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:55,199 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:55,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:55,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:55,509 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:55,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:55,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:55,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:55,818 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:55,818 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:55,818 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:55,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:55,955 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:56,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:56,133 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:56,133 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:56,175 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:56,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:56,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:56,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:56,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:56,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:56,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:56,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:56,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:56,964 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:57,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:57,067 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:57,067 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:57,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:57,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:57,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:57,382 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:57,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:57,748 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:57,748 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:57,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:57,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:57,984 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:58,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:58,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:58,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:58,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:58,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:58,372 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:58,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:58,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:58,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:58,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:58,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:58,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:58,986 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:58,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:58,987 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:58,995 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:50:58,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:59,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:59,286 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:59,286 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:59,305 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:59,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:59,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:59,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:59,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:50:59,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:59,926 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:50:59,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:50:59,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:50:59,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:50:59,995 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:00,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:00,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:00,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:00,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:00,378 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:51:00,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:51:00,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:51:00,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:00,576 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:00,576 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:00,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:00,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:00,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:00,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:00,912 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:01,001 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:01,201 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:01,202 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:01,202 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:01,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:01,512 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:01,513 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:01,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:01,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:01,835 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:01,835 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:01,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:01,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:02,009 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:02,147 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:02,147 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:02,147 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:02,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:02,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:02,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:02,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:02,609 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:02,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:02,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:02,912 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:02,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:03,009 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:03,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:03,314 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:03,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:03,386 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:03,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:03,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:03,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:03,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:04,017 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:04,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:04,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:04,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:04,236 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:04,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:04,634 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:04,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:04,635 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:04,701 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:05,037 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:05,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:05,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:05,078 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:05,140 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:05,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:05,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:05,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:05,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:06,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:06,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:06,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:06,043 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:06,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:06,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:06,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:06,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:06,497 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:06,769 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:06,770 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:06,770 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:06,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:07,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:07,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:07,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:07,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:07,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:07,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:07,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:07,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:07,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:07,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:07,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:07,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:07,882 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:08,063 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:08,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:08,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:08,240 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:08,294 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:08,618 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:08,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:08,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:08,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:08,928 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:08,928 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:08,928 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:08,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:09,071 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:09,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:09,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:09,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:09,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:09,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:09,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:09,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:09,567 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:09,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:09,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:09,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:09,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:09,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:10,078 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:10,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:10,185 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:10,185 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:10,219 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:10,514 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:10,514 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:10,514 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:10,540 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:10,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:10,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:10,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:10,876 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:11,092 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:11,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:11,151 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:11,152 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:11,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:11,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:11,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:11,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:11,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:11,789 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:11,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:11,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:11,840 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:12,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:12,101 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:12,101 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:12,101 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:12,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:12,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:12,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:12,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:12,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:12,747 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:12,748 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:12,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:12,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:13,065 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:13,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:13,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:13,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:13,101 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:13,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:13,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:13,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:13,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:13,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:13,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:13,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:13,719 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:14,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:14,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:14,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:14,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:14,102 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:14,340 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:14,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:14,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:14,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:14,654 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:14,662 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:14,662 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:14,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:14,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:14,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:14,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:14,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:14,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:15,108 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:15,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:15,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:15,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:15,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:15,426 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:51:15,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:51:15,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:15,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:15,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:15,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:15,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:15,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:15,917 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:15,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:16,114 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:16,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:16,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:16,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:16,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:16,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:16,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:16,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:16,564 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:16,865 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:16,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:16,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:16,877 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:17,126 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:17,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:17,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:17,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:17,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:17,488 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:17,488 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:17,488 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:17,506 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:17,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:17,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:17,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:17,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:18,120 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:18,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:18,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:18,128 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:18,130 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:18,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:18,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:18,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:18,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:18,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:18,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:18,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:18,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:19,062 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:19,063 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:19,063 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:19,074 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:19,129 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:19,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:19,375 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:19,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:19,384 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:19,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:19,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:19,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:19,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:19,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:19,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:19,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:19,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:20,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:20,136 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:20,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:20,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:20,311 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:20,323 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:20,617 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:20,618 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:20,618 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:20,631 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:20,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:20,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:20,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:20,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:21,147 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:21,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:21,244 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:21,244 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:21,271 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:21,559 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:21,560 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:21,560 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:21,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:21,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:21,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:21,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:21,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:22,159 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:22,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:22,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:22,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:22,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:22,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:22,504 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:22,504 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:22,555 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:22,822 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:22,823 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:22,823 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:22,882 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:23,137 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:23,138 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:23,138 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:23,159 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:23,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:23,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:23,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:23,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:23,502 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:23,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:23,758 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:23,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:23,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:24,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:24,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:24,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:24,117 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:24,160 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:24,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:24,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:24,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:24,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:24,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:24,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:24,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:24,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:25,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:25,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:25,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:25,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:25,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:25,171 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:25,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:25,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:25,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:25,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:25,824 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:25,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:25,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:25,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:26,183 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:26,206 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:26,206 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:26,207 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:26,259 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:26,575 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:26,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:26,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:26,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:26,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:26,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:26,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:27,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:27,191 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:27,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:27,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:27,396 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:27,455 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:27,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:27,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:27,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:27,853 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:28,187 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:28,187 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:28,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:28,196 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:28,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:28,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:28,578 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:28,578 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:28,631 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:28,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:28,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:28,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:29,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:29,203 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:29,333 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:29,334 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:29,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:29,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:29,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:29,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:29,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:29,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:30,212 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:30,212 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:30,212 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:30,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:30,224 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:30,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:30,405 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:51:30,426 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:51:30,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:51:30,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:30,679 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:30,679 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:30,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:31,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:31,067 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:31,067 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:31,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:31,230 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:31,424 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:31,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:31,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:31,472 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:31,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:31,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:31,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:31,754 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:32,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:32,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:32,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:32,064 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:32,235 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:32,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:32,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:32,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:32,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:32,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:32,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:32,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:32,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:32,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:32,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:32,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:33,004 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:33,254 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:33,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:33,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:33,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:33,322 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:33,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:33,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:33,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:33,631 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:33,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:33,929 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:33,929 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:33,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:34,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:34,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:34,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:34,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:34,255 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:34,559 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:34,559 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:34,559 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:34,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:34,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:34,873 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:34,873 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:34,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:35,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:35,181 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:35,181 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:35,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:35,256 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:35,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:35,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:35,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:35,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:35,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:35,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:35,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:35,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:35,826 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:36,207 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:36,207 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:36,207 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:36,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:36,257 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:36,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:36,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:36,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:36,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:36,841 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:36,842 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:36,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:36,853 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:37,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:37,148 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:37,148 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:37,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:37,264 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:37,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:37,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:37,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:37,479 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:37,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:37,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:37,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:37,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:38,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:38,084 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:38,084 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:38,103 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:38,271 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:38,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:38,401 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:38,401 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:38,420 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:38,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:38,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:38,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:38,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:39,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:39,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:39,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:39,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:39,283 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:39,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:39,353 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:39,353 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:39,392 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:39,667 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:39,667 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:39,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:39,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:39,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:39,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:39,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:40,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:40,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:40,289 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:40,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:40,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:40,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:40,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:40,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:40,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:40,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:40,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:40,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:40,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:40,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:40,981 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:41,242 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:41,242 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:41,242 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:41,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:41,289 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:41,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:41,554 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:41,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:41,577 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:41,867 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:41,867 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:41,867 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:41,898 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:42,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:42,176 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:42,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:42,189 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:42,296 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:42,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:42,488 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:42,488 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:42,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:42,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:42,795 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:42,795 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:42,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:43,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:43,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:43,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:43,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:43,302 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:43,404 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:43,404 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:43,404 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:43,429 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:43,726 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:43,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:43,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:43,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:44,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:44,041 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:44,041 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:44,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:44,314 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:44,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:44,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:44,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:44,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:44,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:44,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:44,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:44,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:44,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:44,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:44,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:45,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:45,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:45,300 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:45,300 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:45,314 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:45,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:45,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:51:45,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:51:45,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:45,620 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:45,620 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:45,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:45,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:45,937 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:45,937 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:45,937 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:45,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:46,252 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:46,252 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:46,252 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:46,264 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:46,315 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:46,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:46,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:46,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:46,574 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:46,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:46,882 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:46,882 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:46,893 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:47,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:47,190 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:47,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:47,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:47,320 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:47,490 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:47,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:47,490 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:47,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:47,818 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:47,818 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:47,818 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:47,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:48,129 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:48,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:48,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:48,141 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:48,329 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:48,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:48,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:48,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:48,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:48,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:48,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:48,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:48,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:49,175 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:49,176 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:49,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:49,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:49,334 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:49,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:49,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:49,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:49,577 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:49,862 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:49,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:49,863 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:49,918 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:50,206 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:50,207 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:50,207 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:50,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:50,337 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:50,569 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:50,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:50,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:50,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:50,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:50,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:50,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:50,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:50,975 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:51,353 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:51,368 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:51,368 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:51,368 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:51,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:51,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:51,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:51,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:51,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:52,198 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:52,198 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:52,198 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:52,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:52,362 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:52,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:52,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:52,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:52,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:52,898 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:52,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:52,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:52,910 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:53,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:53,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:53,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:53,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:53,366 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:53,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:53,523 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:53,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:53,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:53,827 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:53,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:53,827 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:53,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:54,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:54,145 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:54,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:54,157 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:54,388 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:54,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:54,445 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:54,445 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:54,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:54,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:54,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:54,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:54,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:55,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:55,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:55,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:55,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:55,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:55,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:55,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:55,399 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:55,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:55,689 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:55,689 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:55,689 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:55,690 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:51:55,707 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:56,007 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:56,008 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:56,008 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:56,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:56,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:56,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:56,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:56,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:56,406 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:56,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:56,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:56,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:56,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:56,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:56,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:56,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:56,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:57,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:57,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:57,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:57,318 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:57,411 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:57,579 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:57,579 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:57,579 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:57,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:57,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:57,893 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:57,893 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:57,952 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:58,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:58,211 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:58,211 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:58,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:58,414 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:58,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:58,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:58,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:58,547 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:58,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:58,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:58,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:58,860 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:59,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:59,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:59,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:59,171 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:59,426 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:51:59,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:59,466 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:59,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:59,484 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:51:59,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:51:59,779 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:51:59,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:51:59,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:00,094 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:00,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:00,095 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:00,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:00,383 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:52:00,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:00,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:00,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:00,426 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:00,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:52:00,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:00,430 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:52:00,719 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:00,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:00,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:00,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:00,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:01,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:01,046 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:01,046 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:01,078 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:01,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:01,373 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:01,373 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:01,414 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:01,427 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:01,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:01,691 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:01,691 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:01,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:02,001 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:02,001 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:02,001 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:02,054 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:02,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:02,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:02,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:02,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:02,432 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:02,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:02,648 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:02,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:02,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:02,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:02,962 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:02,962 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:02,980 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:03,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:03,274 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:03,274 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:03,283 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:03,437 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:03,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:03,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:03,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:03,598 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:03,897 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:03,897 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:03,897 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:03,910 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:04,207 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:04,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:04,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:04,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:04,453 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:04,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:04,520 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:04,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:04,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:04,837 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:04,837 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:04,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:04,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:05,146 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:05,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:05,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:05,165 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:05,465 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:05,480 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:05,481 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:05,481 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:05,492 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:05,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:05,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:05,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:05,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:05,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:06,104 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:06,104 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:06,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:06,117 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:06,478 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:06,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:06,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:06,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:06,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:06,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:06,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:06,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:06,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:07,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:07,119 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:07,119 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:07,131 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:07,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:07,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:07,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:07,444 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:07,478 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:07,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:07,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:07,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:07,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:08,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:08,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:08,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:08,062 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:08,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:08,351 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:08,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:08,370 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:08,486 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:08,680 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:08,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:08,680 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:08,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:08,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:08,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:08,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:09,003 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:09,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:09,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:09,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:09,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:09,491 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:09,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:09,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:09,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:09,665 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:09,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:09,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:09,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:10,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:10,280 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:10,280 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:10,280 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:10,340 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:10,497 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:10,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:10,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:10,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:10,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:10,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:10,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:10,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:10,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:10,999 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:11,293 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:11,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:11,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:11,351 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:11,503 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:11,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:11,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:11,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:11,696 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:11,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:11,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:11,987 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:12,056 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:12,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:12,443 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:12,443 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:12,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:12,512 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:12,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:12,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:12,878 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:12,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:13,296 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:13,296 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:13,297 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:13,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:13,520 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:13,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:13,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:13,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:13,724 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:13,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:13,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:13,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:14,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:14,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:14,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:14,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:14,361 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:14,527 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:14,646 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:14,646 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:14,647 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:14,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:14,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:14,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:14,957 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:15,003 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:15,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:15,266 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:15,266 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:15,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:15,430 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:52:15,430 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:52:15,538 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:15,583 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:15,584 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:15,584 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:15,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:15,892 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:15,892 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:15,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:15,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:16,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:16,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:16,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:16,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:16,236 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:16,551 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:16,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:16,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:16,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:16,601 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:16,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:16,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:16,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:16,884 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:17,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:17,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:17,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:17,236 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:17,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:17,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:17,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:17,545 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:17,545 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:17,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:17,832 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:17,832 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:17,869 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:18,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:18,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:18,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:18,159 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:18,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:18,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:18,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:18,465 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:18,551 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:18,752 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:18,752 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:18,752 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:18,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:19,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:19,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:19,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:19,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:19,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:19,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:19,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:19,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:19,557 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:19,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:19,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:19,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:19,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:20,003 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:20,004 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:20,004 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:20,015 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:20,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:20,313 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:20,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:20,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:20,570 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:20,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:20,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:20,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:20,635 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:20,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:20,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:20,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:20,946 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:21,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:21,250 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:21,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:21,250 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:21,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:21,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:21,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:21,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:21,572 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:21,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:21,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:21,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:21,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:21,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:22,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:22,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:22,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:22,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:22,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:22,505 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:22,505 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:22,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:22,573 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:22,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:22,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:22,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:22,829 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:23,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:23,119 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:23,119 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:23,138 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:23,446 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:23,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:23,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:23,458 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:23,577 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:23,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:23,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:23,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:23,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:24,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:24,072 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:24,072 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:24,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:24,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:24,383 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:24,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:24,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:24,583 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:24,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:24,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:24,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:24,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:25,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:25,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:25,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:25,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:25,320 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:25,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:25,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:25,334 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:25,599 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:25,630 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:25,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:25,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:25,643 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:25,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:25,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:25,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:25,957 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:26,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:26,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:26,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:26,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:26,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:26,576 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:26,576 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:26,576 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:26,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:26,599 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:26,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:26,890 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:26,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:26,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:27,191 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:27,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:27,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:27,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:27,513 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:27,513 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:27,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:27,526 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:27,605 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:27,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:27,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:27,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:27,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:28,139 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:28,140 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:28,140 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:28,151 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:28,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:28,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:28,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:28,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:28,609 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:28,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:28,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:28,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:28,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:29,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:29,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:29,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:29,081 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:29,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:29,372 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:29,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:29,392 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:29,630 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:29,698 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:29,699 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:29,699 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:29,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:30,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:30,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:30,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:30,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:30,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:30,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:30,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:30,371 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:30,384 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:52:30,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:52:30,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:52:30,642 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:30,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:30,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:30,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:30,683 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:30,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:30,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:30,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:31,038 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:31,319 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:31,320 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:31,320 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:31,320 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:31,377 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:31,654 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:31,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:31,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:31,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:31,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:32,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:32,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:32,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:32,122 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:32,462 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:32,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:32,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:32,526 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:32,660 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:32,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:32,873 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:32,873 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:32,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:33,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:33,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:33,311 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:33,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:33,677 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:33,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:33,745 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:33,745 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:33,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:34,146 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:34,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:34,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:34,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:34,555 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:34,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:34,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:34,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:34,684 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:34,981 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:34,981 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:34,981 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:35,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:35,376 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:35,377 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:35,377 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:35,460 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:35,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:35,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:35,774 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:35,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:35,844 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:36,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:36,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:36,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:36,285 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:36,727 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:36,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:36,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:36,739 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:36,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:36,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:37,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:37,152 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:37,152 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:37,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:37,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:37,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:37,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:37,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:37,736 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:38,053 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:38,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:38,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:38,097 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:38,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:38,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:38,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:38,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:38,756 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:38,772 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:38,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:38,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:38,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:39,086 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:39,087 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:39,087 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:39,100 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:39,403 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:39,403 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:39,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:39,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:39,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:39,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:39,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:39,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:39,756 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:40,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:40,027 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:40,027 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:40,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:40,340 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:40,340 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:40,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:40,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:40,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:40,661 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:40,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:40,674 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:40,764 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:40,980 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:40,981 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:40,981 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:40,993 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:41,283 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:41,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:41,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:41,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:41,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:41,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:41,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:41,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:41,770 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:41,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:41,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:41,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:41,928 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:41,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:42,231 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:42,231 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:42,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:42,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:42,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:42,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:42,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:42,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:42,773 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:42,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:42,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:42,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:42,889 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:43,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:43,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:43,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:43,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:43,494 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:43,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:43,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:43,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:43,785 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:43,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:43,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:43,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:43,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:44,126 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:44,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:44,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:44,138 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:44,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:44,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:44,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:44,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:44,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:44,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:44,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:44,765 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:44,785 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:45,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:45,056 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:45,056 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:45,075 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:45,374 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:45,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:45,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:45,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:45,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:52:45,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:52:45,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:45,679 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:45,679 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:45,699 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:45,789 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:46,000 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:46,001 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:46,001 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:46,013 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:46,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:46,317 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:46,317 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:46,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:46,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:46,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:46,630 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:46,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:46,795 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:46,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:46,946 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:46,946 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:46,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:46,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:47,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:47,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:47,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:47,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:47,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:47,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:47,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:47,581 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:47,813 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:47,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:47,884 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:47,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:47,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:48,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:48,211 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:48,211 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:48,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:48,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:48,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:48,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:48,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:48,829 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:48,830 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:48,830 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:48,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:48,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:49,150 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:49,151 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:49,151 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:49,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:49,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:49,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:49,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:49,476 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:49,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:49,779 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:49,779 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:49,791 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:49,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:50,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:50,092 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:50,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:50,105 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:50,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:50,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:50,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:50,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:50,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:50,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:50,724 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:50,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:50,836 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:51,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:51,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:51,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:51,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:51,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:51,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:51,352 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:51,377 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:51,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:51,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:51,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:51,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:51,844 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:51,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:51,979 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:51,980 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:51,980 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:52,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:52,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:52,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:52,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:52,339 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:52,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:52,617 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:52,617 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:52,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:52,857 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:52,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:52,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:52,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:52,968 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:53,250 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:53,251 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:53,251 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:53,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:53,566 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:53,567 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:53,567 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:53,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:53,869 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:53,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:53,888 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:53,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:53,917 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:54,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:54,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:54,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:54,216 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:54,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:54,523 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:54,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:54,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:54,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:54,880 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:54,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:54,880 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:54,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:55,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:55,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:55,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:55,303 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:55,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:55,649 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:55,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:55,705 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:55,888 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:56,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:56,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:56,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:56,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:56,426 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:56,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:56,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:56,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:56,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:56,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:56,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:56,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:56,897 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:57,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:57,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:57,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:57,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:52:57,275 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:57,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:57,609 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:57,609 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:57,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:57,909 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:57,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:57,998 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:57,998 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:58,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:58,324 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:58,325 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:58,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:58,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:58,657 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:58,658 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:58,658 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:58,719 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:58,924 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:52:58,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:58,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:58,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:59,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:59,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:59,434 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:59,434 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:59,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:59,894 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:52:59,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:52:59,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:52:59,910 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:52:59,926 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:00,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:00,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:00,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:00,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:00,385 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:53:00,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:53:00,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:53:00,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:00,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:00,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:00,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:00,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:00,934 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:00,934 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:00,942 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:00,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:01,251 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:01,252 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:01,252 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:01,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:01,558 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:01,559 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:01,559 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:01,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:01,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:01,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:01,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:01,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:01,942 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:02,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:02,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:02,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:02,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:02,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:02,504 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:02,504 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:02,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:02,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:02,819 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:02,820 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:02,820 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:02,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:02,949 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:03,123 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:03,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:03,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:03,142 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:03,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:03,458 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:03,458 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:03,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:03,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:03,774 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:03,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:03,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:03,957 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:04,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:04,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:04,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:04,101 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:04,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:04,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:04,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:04,420 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:04,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:04,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:04,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:04,734 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:04,973 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:05,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:05,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:05,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:05,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:05,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:05,346 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:05,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:05,358 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:05,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:05,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:05,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:05,673 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:05,965 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:05,965 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:05,965 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:05,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:05,984 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:06,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:06,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:06,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:06,299 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:06,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:06,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:06,630 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:06,662 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:06,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:06,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:06,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:06,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:06,984 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:07,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:07,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:07,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:07,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:07,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:07,590 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:07,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:07,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:07,635 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:07,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:07,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:07,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:07,950 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:07,990 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:08,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:08,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:08,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:08,253 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:08,530 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:08,531 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:08,531 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:08,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:08,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:08,846 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:08,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:08,867 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:08,995 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:09,157 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:09,157 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:09,157 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:09,169 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:09,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:09,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:09,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:09,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:09,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:09,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:09,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:09,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:10,010 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:10,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:10,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:10,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:10,111 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:10,402 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:10,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:10,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:10,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:10,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:10,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:10,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:10,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:11,014 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:11,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:11,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:11,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:11,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:11,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:11,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:11,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:11,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:11,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:11,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:11,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:11,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:11,977 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:11,978 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:11,978 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:11,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:12,014 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:12,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:12,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:12,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:12,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:12,600 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:12,600 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:12,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:12,601 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:12,612 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:12,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:12,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:12,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:12,926 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:13,021 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:13,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:13,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:13,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:13,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:13,541 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:13,542 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:13,542 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:13,568 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:13,853 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:13,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:13,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:13,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:14,027 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:14,166 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:14,167 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:14,167 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:14,207 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:14,477 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:14,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:14,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:14,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:14,789 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:14,789 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:14,789 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:14,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:15,047 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:15,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:15,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:15,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:15,119 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:15,405 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:15,405 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:15,405 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:15,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:53:15,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:15,435 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:53:15,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:15,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:15,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:15,739 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:16,031 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:16,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:16,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:16,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:16,049 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:16,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:16,351 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:16,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:16,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:16,667 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:16,667 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:16,667 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:16,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:16,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:16,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:16,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:16,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:17,050 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:17,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:17,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:17,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:17,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:17,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:17,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:17,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:17,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:17,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:17,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:17,959 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:17,959 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:18,014 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:18,059 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:18,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:18,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:18,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:18,372 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:18,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:18,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:18,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:18,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:19,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:19,004 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:19,004 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:19,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:19,070 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:19,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:19,366 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:19,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:19,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:19,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:19,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:19,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:19,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:20,044 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:20,044 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:20,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:20,072 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:20,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:20,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:20,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:20,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:20,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:20,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:20,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:20,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:20,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:21,077 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:21,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:21,231 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:21,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:21,289 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:21,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:21,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:21,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:21,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:22,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:22,086 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:22,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:22,094 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:22,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:22,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:22,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:22,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:22,577 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:22,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:22,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:22,912 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:22,912 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:22,979 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:23,102 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:23,333 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:23,334 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:23,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:23,386 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:23,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:23,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:23,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:23,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:23,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:23,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:23,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:24,002 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:24,106 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:24,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:24,286 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:24,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:24,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:24,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:24,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:24,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:24,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:24,919 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:24,920 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:24,920 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:24,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:25,114 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:25,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:25,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:25,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:25,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:25,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:25,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:25,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:25,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:25,855 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:25,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:25,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:25,869 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:26,123 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:26,166 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:26,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:26,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:26,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:26,478 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:26,478 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:26,478 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:26,494 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:26,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:26,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:26,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:26,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:27,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:27,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:27,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:27,117 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:27,123 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:27,424 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:27,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:27,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:27,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:27,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:27,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:27,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:27,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:28,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:28,043 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:28,043 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:28,043 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:28,055 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:28,131 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:28,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:28,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:28,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:28,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:28,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:28,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:28,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:28,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:28,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:28,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:28,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:28,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:29,139 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:29,299 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:29,300 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:29,300 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:29,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:29,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:29,615 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:29,616 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:29,627 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:29,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:29,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:29,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:29,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:30,161 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:30,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:30,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:30,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:30,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:30,388 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:53:30,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:53:30,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:53:30,563 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:30,571 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:30,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:30,603 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:30,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:30,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:30,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:30,920 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:31,173 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:31,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:31,184 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:31,184 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:31,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:31,507 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:31,508 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:31,508 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:31,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:31,824 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:31,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:31,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:31,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:32,139 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:32,140 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:32,140 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:32,170 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:32,173 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:32,453 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:32,453 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:32,453 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:32,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:32,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:32,764 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:32,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:32,775 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:33,061 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:33,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:33,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:33,062 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:33,080 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:33,181 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:33,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:33,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:33,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:33,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:33,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:33,701 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:33,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:33,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:34,003 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:34,003 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:34,003 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:34,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:34,189 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:34,325 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:34,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:34,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:34,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:34,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:34,636 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:34,636 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:34,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:34,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:34,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:34,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:34,963 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:35,189 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:35,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:35,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:35,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:35,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:35,533 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:35,533 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:35,533 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:35,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:35,600 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:35,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:35,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:35,614 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:35,830 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:35,831 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:35,831 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:35,842 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:36,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:36,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:36,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:36,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:36,190 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:36,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:36,464 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:36,464 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:36,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:36,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:36,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:36,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:36,810 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:37,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:37,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:37,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:37,138 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:37,190 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:37,441 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:37,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:37,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:37,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:37,757 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:37,757 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:37,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:37,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:38,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:38,072 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:38,072 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:38,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:38,083 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:38,194 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:38,374 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:38,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:38,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:38,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:38,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:38,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:38,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:38,719 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:39,008 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:39,008 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:39,008 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:39,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:39,199 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:39,337 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:39,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:39,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:39,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:39,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:39,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:39,652 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:39,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:39,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:39,964 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:39,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:40,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:40,207 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:40,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:40,339 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:40,339 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:40,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:40,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:40,718 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:40,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:40,776 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:41,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:41,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:41,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:41,203 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:41,211 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:41,571 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:41,571 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:41,571 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:41,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:41,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:42,000 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:42,000 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:42,068 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:42,216 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:42,433 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:42,433 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:42,433 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:42,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:42,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:42,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:42,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:42,913 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:43,172 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:43,172 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:43,172 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:43,173 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:43,234 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:43,234 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:43,510 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:43,510 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:43,510 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:43,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:43,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:43,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:43,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:43,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:44,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:44,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:44,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:44,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:44,235 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:44,549 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:44,550 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:44,550 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:44,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:44,951 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:44,951 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:44,951 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:45,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:45,238 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:45,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:45,371 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:45,371 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:45,429 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:45,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:53:45,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:53:45,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:45,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:45,738 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:45,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:46,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:46,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:46,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:46,140 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:46,245 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:46,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:46,443 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:46,443 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:46,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:46,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:46,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:46,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:46,775 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:47,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:47,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:47,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:47,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:47,250 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:47,395 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:47,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:47,396 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:47,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:47,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:47,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:47,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:47,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:48,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:48,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:48,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:48,078 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:48,262 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:48,346 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:48,346 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:48,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:48,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:48,391 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:48,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:48,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:48,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:48,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:48,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:48,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:48,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:49,021 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:49,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:49,283 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:49,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:49,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:49,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:49,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:49,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:49,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:49,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:49,923 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:49,923 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:49,923 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:49,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:50,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:50,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:50,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:50,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:50,283 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:50,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:50,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:50,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:50,567 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:50,861 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:50,861 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:50,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:50,880 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:51,194 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:51,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:51,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:51,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:51,290 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:51,509 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:51,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:51,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:51,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:51,823 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:51,824 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:51,824 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:51,835 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:52,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:52,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:52,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:52,145 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:52,295 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:52,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:52,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:52,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:52,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:52,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:52,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:52,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:52,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:53,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:53,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:53,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:53,083 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:53,308 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:53,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:53,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:53,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:53,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:53,395 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:53,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:53,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:53,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:53,707 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:54,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:54,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:54,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:54,024 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:54,320 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:54,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:54,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:54,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:54,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:54,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:54,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:54,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:54,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:54,953 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:54,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:54,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:54,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:55,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:55,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:55,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:55,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:55,320 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:55,573 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:55,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:55,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:55,610 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:55,887 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:55,908 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:55,908 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:55,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:56,212 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:56,213 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:56,213 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:56,248 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:56,326 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:56,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:56,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:56,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:56,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:56,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:56,848 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:56,848 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:56,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:57,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:57,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:57,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:57,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:57,333 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:57,472 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:57,473 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:57,473 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:57,503 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:57,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:57,774 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:57,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:57,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:58,087 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:58,087 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:58,087 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:58,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:58,345 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:58,409 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:58,409 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:58,409 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:58,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:53:58,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:58,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:58,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:58,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:58,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:59,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:59,035 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:59,035 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:59,046 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:59,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:59,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:59,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:59,354 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:53:59,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:59,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:59,661 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:59,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:59,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:53:59,964 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:53:59,964 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:53:59,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:53:59,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:00,295 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:00,295 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:00,295 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:00,307 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:00,354 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:00,392 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:54:00,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:54:00,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:54:00,609 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:00,609 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:00,609 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:00,621 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:00,919 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:00,920 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:00,920 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:00,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:01,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:01,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:01,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:01,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:01,361 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:01,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:01,546 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:01,546 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:01,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:01,863 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:01,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:01,863 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:01,875 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:02,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:02,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:02,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:02,193 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:02,366 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:02,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:02,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:02,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:02,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:02,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:02,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:02,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:02,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:03,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:03,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:03,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:03,165 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:03,380 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:03,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:03,448 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:03,448 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:03,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:03,494 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:03,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:03,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:03,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:03,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:04,127 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:04,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:04,128 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:04,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:04,402 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:04,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:04,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:04,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:04,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:04,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:04,797 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:04,797 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:04,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:05,172 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:05,172 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:05,172 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:05,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:05,411 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:05,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:05,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:05,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:05,617 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:05,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:05,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:05,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:06,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:06,325 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:06,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:06,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:06,369 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:06,418 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:06,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:06,782 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:06,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:06,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:07,297 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:07,297 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:07,297 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:07,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:07,423 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:07,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:07,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:07,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:07,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:08,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:08,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:08,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:08,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:08,435 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:08,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:08,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:08,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:08,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:08,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:09,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:09,142 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:09,142 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:09,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:09,457 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:09,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:09,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:09,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:09,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:09,842 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:09,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:09,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:09,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:10,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:10,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:10,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:10,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:10,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:10,465 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:10,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:10,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:10,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:10,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:10,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:10,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:10,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:11,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:11,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:11,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:11,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:11,416 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:11,416 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:11,417 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:11,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:11,465 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:11,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:11,731 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:11,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:11,782 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:12,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:12,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:12,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:12,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:12,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:12,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:12,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:12,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:12,469 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:12,676 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:12,676 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:12,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:12,701 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:12,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:12,988 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:12,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:13,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:13,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:13,307 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:13,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:13,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:13,473 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:13,617 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:13,618 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:13,618 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:13,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:13,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:13,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:13,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:13,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:13,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:14,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:14,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:14,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:14,290 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:14,478 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:14,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:14,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:14,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:14,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:14,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:14,896 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:14,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:14,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:15,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:15,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:15,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:15,231 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:15,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:54:15,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:54:15,485 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:15,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:15,580 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:15,580 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:15,588 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:15,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:15,836 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:15,836 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:15,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:16,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:16,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:16,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:16,173 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:16,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:16,474 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:16,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:16,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:16,486 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:16,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:16,782 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:16,782 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:16,801 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:17,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:17,107 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:17,107 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:17,116 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:17,417 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:17,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:17,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:17,429 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:17,487 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:17,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:17,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:17,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:17,744 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:18,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:18,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:18,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:18,063 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:18,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:18,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:18,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:18,371 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:18,492 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:18,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:18,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:18,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:18,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:18,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:18,991 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:18,991 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:18,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:19,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:19,304 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:19,304 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:19,305 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:19,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:19,498 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:19,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:19,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:19,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:19,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:19,915 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:19,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:19,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:19,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:20,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:20,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:20,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:20,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:20,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:20,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:20,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:20,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:20,560 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:20,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:20,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:20,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:20,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:21,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:21,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:21,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:21,175 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:21,478 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:21,478 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:21,478 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:21,490 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:21,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:21,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:21,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:21,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:21,797 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:22,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:22,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:22,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:22,109 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:22,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:22,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:22,413 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:22,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:22,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:22,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:22,715 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:22,715 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:22,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:23,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:23,024 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:23,024 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:23,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:23,348 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:23,349 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:23,349 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:23,360 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:23,521 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:23,661 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:23,662 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:23,662 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:23,673 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:23,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:23,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:23,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:23,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:24,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:24,278 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:24,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:24,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:24,290 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:24,537 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:24,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:24,594 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:24,594 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:24,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:24,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:24,904 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:24,904 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:24,915 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:25,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:25,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:25,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:25,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:25,524 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:25,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:25,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:25,543 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:25,544 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:25,841 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:25,841 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:25,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:25,853 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:26,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:26,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:26,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:26,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:26,556 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:26,583 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:26,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:26,584 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:26,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:26,973 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:26,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:26,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:27,024 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:27,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:27,370 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:27,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:27,434 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:27,563 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:27,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:27,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:27,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:27,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:28,170 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:28,170 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:28,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:28,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:28,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:28,572 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:28,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:28,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:28,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:28,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:28,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:28,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:29,056 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:29,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:29,391 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:29,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:29,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:29,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:29,579 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:29,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:29,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:29,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:29,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:30,173 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:30,174 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:30,174 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:30,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:30,393 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:54:30,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:54:30,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:54:30,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:30,580 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:30,588 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:30,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:30,626 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:30,937 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:30,938 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:30,938 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:30,994 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:31,299 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:31,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:31,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:31,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:31,589 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:31,647 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:31,648 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:31,648 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:31,715 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:32,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:32,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:32,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:32,064 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:32,357 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:32,358 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:32,358 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:32,399 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:32,595 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:32,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:32,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:32,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:32,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:33,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:33,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:33,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:33,305 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:33,601 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:33,781 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:33,781 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:33,781 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:33,838 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:34,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:34,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:34,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:34,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:34,611 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:34,793 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:34,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:34,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:34,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:34,829 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:35,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:35,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:35,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:35,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:35,659 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:35,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:35,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:35,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:35,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:36,095 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:36,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:36,095 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:36,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:36,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:36,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:36,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:36,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:36,659 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:36,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:36,727 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:36,727 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:36,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:37,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:37,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:37,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:37,057 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:37,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:37,353 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:37,353 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:37,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:37,666 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:37,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:37,667 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:37,674 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:37,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:37,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:37,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:37,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:37,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:38,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:38,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:38,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:38,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:38,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:38,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:38,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:38,615 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:38,675 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:38,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:38,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:38,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:38,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:39,234 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:39,234 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:39,234 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:39,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:39,549 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:39,550 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:39,550 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:39,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:39,680 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:39,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:39,848 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:39,848 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:39,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:39,867 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:40,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:40,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:40,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:40,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:40,469 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:40,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:40,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:40,488 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:40,694 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:40,795 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:40,795 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:40,796 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:40,807 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:41,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:41,109 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:41,109 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:41,120 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:41,416 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:41,416 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:41,416 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:41,437 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:41,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:41,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:41,739 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:41,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:41,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:42,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:42,057 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:42,057 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:42,068 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:42,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:42,359 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:42,359 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:42,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:42,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:42,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:42,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:42,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:42,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:42,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:42,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:42,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:42,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:43,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:43,291 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:43,291 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:43,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:43,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:43,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:43,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:43,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:43,709 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:43,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:43,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:43,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:43,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:44,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:44,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:44,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:44,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:44,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:44,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:44,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:44,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:44,716 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:44,926 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:44,926 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:44,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:44,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:44,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:45,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:45,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:45,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:45,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:45,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:54:45,458 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:54:45,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:45,600 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:45,600 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:45,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:45,720 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:45,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:45,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:45,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:45,875 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:46,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:46,177 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:46,177 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:46,188 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:46,477 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:46,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:46,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:46,496 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:46,732 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:46,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:46,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:46,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:46,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:47,115 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:47,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:47,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:47,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:47,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:47,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:47,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:47,440 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:47,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:47,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:47,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:47,745 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:47,748 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:48,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:48,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:48,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:48,057 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:48,356 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:48,357 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:48,357 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:48,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:48,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:48,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:48,670 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:48,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:48,745 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:48,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:48,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:48,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:49,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:49,301 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:49,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:49,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:49,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:49,617 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:49,618 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:49,618 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:49,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:49,753 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:49,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:49,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:49,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:49,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:49,957 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:50,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:50,244 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:50,244 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:50,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:50,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:50,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:50,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:50,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:50,757 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:50,868 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:50,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:50,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:50,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:51,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:51,181 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:51,181 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:51,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:51,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:51,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:51,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:51,524 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:51,769 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:51,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:51,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:51,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:51,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:52,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:52,121 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:52,121 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:52,150 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:52,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:52,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:52,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:52,472 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:52,781 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:52,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:52,795 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:52,795 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:52,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:53,129 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:53,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:53,130 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:53,203 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:53,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:53,450 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:53,450 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:53,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:53,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:53,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:53,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:53,781 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:53,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:54,086 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:54,087 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:54,087 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:54,158 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:54,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:54,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:54,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:54,471 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:54,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:54,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:54,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:54,782 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:54,818 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:55,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:55,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:55,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:55,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:54:55,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:55,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:55,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:55,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:55,438 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:55,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:55,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:55,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:55,756 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:55,783 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:56,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:56,032 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:56,032 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:56,090 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:56,349 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:56,350 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:56,350 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:56,398 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:56,658 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:56,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:56,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:56,727 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:56,789 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:56,973 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:56,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:56,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:57,027 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:57,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:57,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:57,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:57,330 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:57,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:57,593 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:57,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:57,635 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:57,796 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:57,920 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:57,920 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:57,920 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:57,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:58,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:58,237 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:58,237 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:58,273 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:58,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:58,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:58,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:58,598 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:58,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:58,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:58,952 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:58,952 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:58,984 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:59,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:59,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:59,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:59,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:59,578 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:59,579 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:59,579 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:59,590 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:54:59,825 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:54:59,891 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:54:59,892 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:54:59,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:54:59,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:00,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:00,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:00,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:00,204 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:00,226 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:00,394 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:55:00,462 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:55:00,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:55:00,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:00,594 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:00,595 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:00,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:00,830 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:00,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:00,830 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:00,830 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:00,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:01,170 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:01,171 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:01,171 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:01,182 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:01,490 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:01,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:01,490 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:01,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:01,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:01,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:01,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:01,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:01,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:02,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:02,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:02,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:02,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:02,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:02,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:02,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:02,458 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:02,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:02,765 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:02,765 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:02,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:02,831 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:03,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:03,076 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:03,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:03,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:03,402 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:03,403 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:03,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:03,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:03,717 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:03,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:03,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:03,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:03,836 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:04,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:04,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:04,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:04,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:04,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:04,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:04,337 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:04,359 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:04,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:04,648 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:04,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:04,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:04,843 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:04,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:04,962 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:04,962 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:05,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:05,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:05,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:05,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:05,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:05,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:05,600 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:05,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:05,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:05,627 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:05,857 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:05,901 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:05,901 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:05,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:05,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:06,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:06,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:06,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:06,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:06,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:06,531 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:06,531 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:06,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:06,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:06,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:06,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:06,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:06,858 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:07,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:07,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:07,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:07,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:07,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:07,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:07,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:07,476 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:07,824 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:07,824 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:07,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:07,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:07,859 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:08,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:08,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:08,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:08,146 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:08,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:08,445 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:08,445 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:08,456 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:08,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:08,758 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:08,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:08,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:08,863 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:09,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:09,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:09,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:09,081 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:09,377 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:09,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:09,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:09,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:09,688 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:09,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:09,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:09,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:09,870 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:09,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:09,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:09,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:10,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:10,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:10,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:10,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:10,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:10,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:10,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:10,624 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:10,624 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:10,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:10,876 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:10,934 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:10,935 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:10,935 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:10,946 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:11,251 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:11,251 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:11,251 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:11,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:11,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:11,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:11,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:11,588 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:11,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:11,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:11,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:11,878 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:11,908 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:12,187 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:12,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:12,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:12,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:12,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:12,505 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:12,506 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:12,549 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:12,820 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:12,820 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:12,820 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:12,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:12,879 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:13,132 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:13,133 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:13,133 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:13,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:13,446 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:13,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:13,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:13,476 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:13,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:13,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:13,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:13,782 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:13,886 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:14,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:14,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:14,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:14,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:14,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:14,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:14,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:14,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:14,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:14,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:14,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:14,715 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:14,892 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:15,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:15,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:15,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:15,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:15,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:15,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:15,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:15,332 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:15,345 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:15,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:55:15,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:55:15,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:15,657 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:15,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:15,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:15,904 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:15,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:15,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:15,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:15,973 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:16,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:16,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:16,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:16,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:16,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:16,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:16,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:16,665 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:16,916 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:16,945 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:16,945 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:16,945 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:17,003 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:17,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:17,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:17,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:17,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:17,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:17,636 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:17,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:17,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:17,928 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:17,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:17,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:17,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:18,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:18,324 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:18,324 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:18,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:18,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:18,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:18,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:18,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:18,721 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:18,940 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:19,001 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:19,001 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:19,001 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:19,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:19,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:19,365 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:19,365 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:19,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:19,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:19,739 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:19,739 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:19,807 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:19,940 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:20,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:20,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:20,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:20,208 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:20,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:20,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:20,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:20,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:20,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:20,957 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:21,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:21,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:21,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:21,074 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:21,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:21,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:21,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:21,456 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:21,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:21,851 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:21,851 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:21,909 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:21,964 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:22,296 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:22,296 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:22,296 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:22,350 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:22,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:22,718 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:22,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:22,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:22,984 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:23,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:23,043 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:23,043 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:23,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:23,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:23,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:23,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:23,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:23,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:23,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:23,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:23,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:23,994 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:23,995 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:23,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:24,003 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:24,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:24,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:24,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:24,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:24,319 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:24,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:24,617 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:24,617 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:24,629 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:24,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:24,913 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:24,913 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:24,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:25,008 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:25,227 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:25,227 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:25,227 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:25,246 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:25,555 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:25,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:25,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:25,567 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:25,858 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:25,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:25,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:25,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:25,877 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:26,016 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:26,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:26,184 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:26,184 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:26,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:26,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:26,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:26,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:26,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:26,811 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:26,811 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:26,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:26,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:27,032 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:27,120 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:27,121 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:27,121 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:27,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:27,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:27,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:27,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:27,444 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:27,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:27,731 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:27,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:27,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:28,044 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:28,055 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:28,056 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:28,056 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:28,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:28,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:28,371 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:28,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:28,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:28,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:28,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:28,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:28,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:28,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:28,988 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:28,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:29,035 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:29,044 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:29,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:29,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:29,311 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:29,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:29,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:29,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:29,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:29,674 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:29,945 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:29,946 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:29,946 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:29,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:30,048 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:30,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:30,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:30,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:30,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:30,395 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:55:30,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:55:30,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:55:30,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:30,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:30,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:30,646 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:30,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:30,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:30,889 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:30,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:30,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:31,054 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:31,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:31,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:31,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:31,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:31,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:31,518 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:31,518 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:31,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:31,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:31,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:31,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:31,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:32,059 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:32,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:32,145 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:32,145 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:32,157 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:32,456 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:32,457 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:32,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:32,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:32,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:32,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:32,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:32,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:33,074 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:33,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:33,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:33,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:33,100 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:33,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:33,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:33,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:33,407 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:33,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:33,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:33,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:33,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:34,018 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:34,018 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:34,018 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:34,035 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:34,074 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:34,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:34,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:34,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:34,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:34,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:34,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:34,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:34,654 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:34,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:34,953 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:34,953 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:34,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:35,082 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:35,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:35,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:35,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:35,271 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:35,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:35,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:35,574 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:35,586 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:35,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:35,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:35,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:35,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:35,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:36,086 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:36,197 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:36,198 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:36,198 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:36,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:36,509 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:36,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:36,510 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:36,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:36,821 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:36,821 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:36,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:36,880 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:37,098 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:37,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:37,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:37,128 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:37,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:37,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:37,443 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:37,443 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:37,506 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:37,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:37,757 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:37,757 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:37,810 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:38,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:38,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:38,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:38,098 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:38,153 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:38,405 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:38,405 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:38,405 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:38,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:38,719 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:38,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:38,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:38,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:39,035 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:39,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:39,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:39,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:39,099 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:39,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:39,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:39,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:39,466 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:39,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:39,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:39,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:39,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:40,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:40,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:40,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:40,099 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:40,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:40,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:40,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:40,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:40,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:40,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:40,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:40,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:40,805 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:41,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:41,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:41,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:41,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:41,100 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:41,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:41,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:41,389 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:41,389 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:41,433 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:41,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:41,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:41,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:41,805 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:42,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:42,069 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:42,069 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:42,101 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:42,143 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:42,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:42,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:42,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:42,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:42,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:42,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:42,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:42,790 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:43,053 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:43,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:43,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:43,120 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:43,120 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:43,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:43,371 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:43,371 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:43,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:43,688 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:43,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:43,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:43,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:44,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:44,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:44,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:44,184 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:44,232 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:44,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:44,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:44,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:44,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:44,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:44,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:44,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:44,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:45,197 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:45,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:45,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:45,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:45,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:45,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:55:45,473 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:55:45,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:45,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:45,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:45,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:46,081 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:46,082 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:46,082 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:46,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:46,127 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:46,203 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:46,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:46,397 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:46,397 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:46,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:46,703 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:46,703 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:46,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:46,759 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:47,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:47,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:47,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:47,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:47,210 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:47,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:47,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:47,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:47,403 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:47,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:47,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:47,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:47,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:47,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:47,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:47,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:48,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:48,221 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:48,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:48,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:48,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:48,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:48,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:48,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:48,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:48,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:48,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:48,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:48,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:48,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:49,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:49,232 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:49,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:49,240 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:49,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:49,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:49,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:49,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:49,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:49,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:49,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:49,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:49,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:50,167 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:50,167 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:50,167 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:50,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:50,241 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:50,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:50,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:50,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:50,490 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:50,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:50,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:50,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:50,803 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:51,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:51,109 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:51,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:51,110 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:51,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:51,247 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:51,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:51,425 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:51,425 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:51,440 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:51,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:51,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:51,738 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:51,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:52,044 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:52,044 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:52,044 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:52,063 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:52,253 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:52,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:52,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:52,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:52,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:52,676 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:52,676 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:52,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:52,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:52,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:52,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:52,987 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:53,000 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:53,269 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:53,299 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:53,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:53,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:53,312 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:53,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:53,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:53,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:53,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:53,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:53,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:53,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:53,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:54,241 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:54,242 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:54,242 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:54,277 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:54,277 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:54,555 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:54,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:54,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:54,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:54,871 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:54,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:54,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:54,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:55,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:55,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:55,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:55,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:55,282 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:55,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:55,507 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:55,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:55,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:55,818 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:55,818 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:55,819 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:55,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:56,138 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:56,138 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:56,138 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:56,139 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:55:56,199 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:56,287 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:56,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:56,450 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:56,450 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:56,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:56,760 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:56,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:56,761 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:56,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:57,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:57,073 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:57,073 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:57,122 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:57,301 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:57,388 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:57,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:57,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:57,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:57,703 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:57,704 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:57,704 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:57,714 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:58,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:58,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:58,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:58,027 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:58,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:58,313 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:58,313 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:58,313 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:58,333 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:58,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:58,634 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:58,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:58,643 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:58,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:58,945 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:58,945 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:58,962 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:59,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:59,250 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:59,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:59,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:59,313 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:55:59,550 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:59,550 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:59,550 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:59,569 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:55:59,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:55:59,873 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:55:59,873 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:55:59,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:00,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:00,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:00,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:00,214 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:00,323 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:00,397 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:56:00,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:56:00,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:56:00,517 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:00,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:00,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:00,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:00,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:00,835 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:00,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:00,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:01,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:01,153 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:01,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:01,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:01,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:01,328 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:01,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:01,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:01,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:01,489 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:01,787 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:01,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:01,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:01,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:02,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:02,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:02,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:02,110 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:02,346 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:02,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:02,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:02,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:02,431 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:02,734 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:02,734 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:02,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:02,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:03,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:03,041 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:03,041 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:03,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:03,360 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:03,361 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:03,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:03,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:03,392 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:03,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:03,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:03,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:03,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:04,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:04,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:04,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:04,208 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:04,366 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:04,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:04,489 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:04,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:04,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:04,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:04,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:04,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:04,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:05,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:05,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:05,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:05,308 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:05,371 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:05,576 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:05,576 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:05,576 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:05,658 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:05,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:05,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:05,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:06,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:06,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:06,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:06,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:06,370 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:06,380 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:06,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:06,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:06,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:06,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:06,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:07,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:07,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:07,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:07,218 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:07,385 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:07,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:07,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:07,530 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:07,596 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:07,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:07,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:07,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:07,978 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:08,401 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:08,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:08,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:08,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:08,509 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:08,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:08,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:08,810 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:08,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:09,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:09,267 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:09,267 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:09,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:09,410 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:09,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:09,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:09,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:09,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:10,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:10,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:10,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:10,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:10,415 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:10,767 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:10,768 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:10,768 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:10,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:11,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:11,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:11,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:11,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:11,419 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:11,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:11,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:11,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:11,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:11,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:12,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:12,150 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:12,150 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:12,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:12,424 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:12,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:12,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:12,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:12,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:12,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:12,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:12,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:12,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:13,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:13,192 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:13,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:13,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:13,441 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:13,509 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:13,510 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:13,510 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:13,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:13,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:13,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:13,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:13,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:14,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:14,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:14,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:14,196 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:14,454 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:14,454 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:14,454 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:14,454 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:14,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:14,778 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:14,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:14,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:14,799 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:15,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:15,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:15,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:15,117 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:15,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:15,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:15,422 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:15,434 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:15,454 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:15,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:56:15,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:56:15,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:15,739 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:15,739 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:15,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:16,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:16,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:16,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:16,062 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:16,367 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:16,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:16,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:16,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:16,462 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:16,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:16,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:16,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:16,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:16,994 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:16,994 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:16,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:16,995 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:17,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:17,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:17,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:17,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:17,322 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:17,470 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:17,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:17,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:17,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:17,635 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:17,926 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:17,926 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:17,926 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:17,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:18,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:18,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:18,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:18,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:18,484 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:18,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:18,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:18,563 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:18,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:18,873 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:18,873 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:18,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:18,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:19,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:19,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:19,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:19,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:19,497 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:19,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:19,498 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:19,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:19,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:19,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:19,801 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:19,801 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:19,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:20,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:20,122 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:20,122 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:20,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:20,433 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:20,434 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:20,434 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:20,447 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:20,488 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:20,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:20,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:20,738 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:20,759 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:21,055 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:21,055 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:21,055 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:21,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:21,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:21,366 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:21,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:21,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:21,495 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:21,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:21,679 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:21,679 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:21,692 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:21,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:21,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:21,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:22,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:22,001 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:22,297 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:22,305 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:22,305 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:22,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:22,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:22,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:22,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:22,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:22,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:22,912 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:22,912 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:22,912 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:22,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:23,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:23,232 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:23,232 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:23,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:23,522 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:23,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:23,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:23,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:23,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:23,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:23,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:23,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:23,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:24,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:24,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:24,168 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:24,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:24,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:24,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:24,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:24,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:24,522 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:24,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:24,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:24,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:24,801 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:25,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:25,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:25,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:25,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:25,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:25,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:25,412 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:25,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:25,529 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:25,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:25,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:25,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:25,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:26,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:26,046 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:26,046 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:26,059 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:26,357 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:26,357 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:26,357 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:26,370 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:26,533 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:26,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:26,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:26,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:26,682 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:26,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:26,988 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:26,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:27,000 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:27,304 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:27,305 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:27,305 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:27,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:27,341 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:27,545 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:27,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:27,620 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:27,620 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:27,654 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:27,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:27,937 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:27,937 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:27,994 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:28,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:28,264 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:28,264 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:28,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:28,557 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:28,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:28,581 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:28,581 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:28,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:28,910 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:28,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:28,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:28,984 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:29,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:29,237 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:29,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:29,319 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:29,578 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:29,667 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:29,667 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:29,667 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:29,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:30,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:30,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:30,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:30,145 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:30,398 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:56:30,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:30,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:30,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:30,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:56:30,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:30,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:56:30,584 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:30,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:30,836 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:30,836 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:30,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:31,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:31,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:31,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:31,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:31,602 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:31,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:31,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:31,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:31,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:32,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:32,020 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:32,020 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:32,105 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:32,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:32,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:32,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:32,414 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:32,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:32,607 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:32,830 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:32,830 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:32,830 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:32,908 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:33,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:33,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:33,261 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:33,341 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:33,624 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:33,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:33,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:33,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:33,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:34,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:34,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:34,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:34,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:34,541 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:34,541 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:34,541 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:34,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:34,625 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:34,945 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:34,946 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:34,946 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:34,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:35,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:35,318 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:35,318 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:35,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:35,645 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:35,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:35,703 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:35,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:35,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:36,094 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:36,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:36,095 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:36,163 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:36,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:36,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:36,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:36,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:36,653 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:36,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:36,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:36,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:36,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:37,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:37,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:37,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:37,432 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:37,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:37,657 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:37,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:37,745 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:37,745 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:37,803 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:38,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:38,145 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:38,145 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:38,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:38,546 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:38,546 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:38,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:38,576 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:38,663 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:38,858 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:38,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:38,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:38,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:39,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:39,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:39,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:39,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:39,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:39,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:39,479 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:39,497 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:39,669 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:39,790 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:39,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:39,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:39,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:40,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:40,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:40,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:40,125 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:40,424 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:40,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:40,425 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:40,436 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:40,681 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:40,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:40,735 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:40,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:40,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:41,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:41,040 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:41,040 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:41,059 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:41,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:41,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:41,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:41,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:41,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:41,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:41,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:41,687 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:41,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:41,995 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:41,995 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:41,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:42,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:42,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:42,309 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:42,309 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:42,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:42,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:42,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:42,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:42,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:42,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:42,687 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:42,922 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:42,922 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:42,922 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:42,941 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:43,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:43,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:43,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:43,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:43,558 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:43,559 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:43,559 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:43,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:43,692 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:43,867 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:43,867 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:43,868 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:43,880 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:44,174 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:44,175 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:44,175 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:44,186 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:44,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:44,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:44,484 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:44,495 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:44,698 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:44,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:44,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:44,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:44,803 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:45,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:45,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:45,101 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:45,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:45,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:45,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:45,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:45,424 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:45,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:56:45,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:56:45,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:45,719 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:45,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:45,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:45,738 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:46,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:46,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:46,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:46,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:46,349 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:46,349 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:46,349 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:46,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:46,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:46,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:46,670 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:46,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:46,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:46,980 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:46,981 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:46,981 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:47,004 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:47,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:47,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:47,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:47,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:47,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:47,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:47,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:47,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:47,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:47,713 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:47,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:47,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:47,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:47,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:48,251 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:48,252 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:48,252 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:48,295 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:48,569 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:48,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:48,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:48,615 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:48,721 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:48,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:48,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:48,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:48,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:49,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:49,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:49,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:49,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:49,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:49,507 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:49,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:49,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:49,726 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:49,821 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:49,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:49,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:49,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:50,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:50,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:50,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:50,147 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:50,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:50,449 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:50,449 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:50,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:50,749 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:50,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:50,765 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:50,765 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:50,777 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:51,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:51,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:51,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:51,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:51,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:51,391 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:51,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:51,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:51,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:51,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:51,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:51,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:51,749 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:52,018 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:52,018 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:52,018 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:52,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:52,339 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:52,339 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:52,339 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:52,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:52,652 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:52,653 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:52,653 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:52,653 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:52,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:52,755 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:52,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:52,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:52,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:52,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:53,285 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:53,285 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:53,285 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:53,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:53,597 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:53,597 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:53,598 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:53,659 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:53,762 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:53,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:53,912 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:53,912 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:53,950 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:54,227 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:54,227 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:54,227 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:54,239 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:54,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:54,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:54,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:54,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:54,781 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:54,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:54,850 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:54,850 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:54,869 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:55,175 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:55,175 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:55,175 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:55,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:55,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:55,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:55,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:55,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:55,793 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:55,830 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:55,830 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:55,830 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:55,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:56,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:56,163 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:56,164 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:56,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:56,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:56,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:56,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:56,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:56,805 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:56,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:56,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:56,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:56,899 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:57,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:57,170 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:57,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:57,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:57,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:57,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:57,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:57,566 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:57,817 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:57,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:57,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:57,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:57,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:56:57,914 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:58,275 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:58,276 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:58,276 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:58,325 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:58,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:58,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:58,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:58,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:58,825 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:59,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:59,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:59,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:59,142 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:59,560 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:59,560 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:59,560 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:59,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:56:59,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:56:59,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:56:59,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:56:59,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:56:59,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:00,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:00,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:00,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:00,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:00,402 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:57:00,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:57:00,483 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:57:00,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:00,625 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:00,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:00,635 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:00,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:00,811 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:00,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:00,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:00,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:01,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:01,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:01,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:01,130 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:01,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:01,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:01,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:01,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:01,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:01,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:01,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:01,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:01,838 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:02,055 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:02,055 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:02,055 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:02,090 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:02,373 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:02,373 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:02,373 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:02,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:02,696 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:02,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:02,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:02,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:02,844 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:03,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:03,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:03,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:03,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:03,052 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:03,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:03,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:03,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:03,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:03,624 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:03,624 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:03,624 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:03,671 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:03,862 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:03,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:03,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:03,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:04,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:04,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:04,267 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:04,267 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:04,285 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:04,583 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:04,584 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:04,584 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:04,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:04,874 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:04,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:04,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:04,885 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:04,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:05,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:05,213 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:05,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:05,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:05,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:05,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:05,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:05,541 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:05,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:05,846 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:05,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:05,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:05,874 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:06,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:06,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:06,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:06,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:06,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:06,476 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:06,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:06,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:06,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:06,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:06,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:06,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:06,881 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:07,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:07,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:07,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:07,110 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:07,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:07,414 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:07,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:07,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:07,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:07,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:07,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:07,741 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:07,885 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:08,041 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:08,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:08,042 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:08,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:08,057 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:08,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:08,353 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:08,353 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:08,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:08,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:08,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:08,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:08,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:08,891 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:09,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:09,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:09,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:09,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:09,334 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:09,334 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:09,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:09,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:09,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:09,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:09,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:09,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:09,904 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:09,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:09,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:09,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:10,013 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:10,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:10,295 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:10,295 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:10,338 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:10,609 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:10,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:10,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:10,661 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:10,912 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:10,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:10,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:10,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:10,984 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:11,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:11,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:11,240 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:11,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:11,555 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:11,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:11,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:11,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:11,871 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:11,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:11,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:11,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:11,913 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:12,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:12,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:12,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:12,207 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:12,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:12,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:12,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:12,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:12,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:12,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:12,812 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:12,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:12,917 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:13,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:13,121 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:13,121 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:13,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:13,133 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:13,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:13,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:13,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:13,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:13,748 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:13,748 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:13,749 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:13,760 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:13,922 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:14,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:14,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:14,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:14,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:14,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:14,393 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:14,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:14,412 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:14,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:14,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:14,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:14,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:14,931 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:15,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:15,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:15,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:15,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:15,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:15,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:15,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:15,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:15,486 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:57:15,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:57:15,646 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:15,646 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:15,646 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:15,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:15,943 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:15,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:15,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:15,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:15,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:16,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:16,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:16,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:16,299 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:16,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:16,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:16,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:16,657 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:16,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:16,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:16,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:16,943 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:16,978 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:17,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:17,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:17,274 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:17,334 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:17,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:17,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:17,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:17,675 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:17,963 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:17,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:17,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:17,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:18,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:18,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:18,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:18,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:18,332 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:18,422 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:18,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:18,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:18,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:18,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:18,968 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:19,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:19,092 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:19,092 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:19,172 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:19,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:19,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:19,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:19,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:19,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:19,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:19,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:19,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:19,973 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:20,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:20,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:20,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:20,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:20,530 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:20,531 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:20,531 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:20,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:20,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:20,888 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:20,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:20,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:20,982 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:21,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:21,246 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:21,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:21,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:21,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:21,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:21,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:21,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:21,986 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:22,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:22,142 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:22,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:22,186 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:22,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:22,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:22,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:22,683 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:22,993 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:23,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:23,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:23,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:23,189 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:23,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:23,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:23,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:23,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:23,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:24,002 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:24,137 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:24,138 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:24,138 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:24,163 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:24,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:24,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:24,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:24,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:24,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:24,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:24,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:24,853 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:25,009 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:25,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:25,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:25,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:25,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:25,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:25,457 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:25,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:25,476 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:25,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:25,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:25,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:25,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:26,025 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:26,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:26,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:26,078 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:26,097 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:26,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:26,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:26,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:26,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:26,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:26,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:26,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:26,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:27,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:27,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:27,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:27,027 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:27,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:27,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:27,335 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:27,335 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:27,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:27,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:27,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:27,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:27,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:27,960 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:27,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:27,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:28,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:28,028 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:28,275 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:28,275 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:28,276 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:28,319 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:28,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:28,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:28,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:28,637 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:28,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:28,902 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:28,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:28,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:28,924 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:29,035 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:29,212 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:29,213 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:29,213 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:29,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:29,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:29,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:29,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:29,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:29,829 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:29,829 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:29,829 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:29,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:30,044 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:30,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:30,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:30,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:30,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:30,404 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:57:30,469 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:30,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:30,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:30,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:30,485 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:57:30,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:57:30,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:30,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:30,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:30,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:31,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:31,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:31,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:31,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:31,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:31,408 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:31,409 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:31,409 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:31,422 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:31,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:31,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:31,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:31,734 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:32,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:32,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:32,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:32,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:32,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:32,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:32,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:32,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:32,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:32,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:32,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:32,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:32,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:32,973 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:32,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:32,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:33,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:33,067 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:33,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:33,364 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:33,364 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:33,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:33,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:33,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:33,679 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:33,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:33,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:33,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:33,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:33,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:34,002 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:34,074 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:34,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:34,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:34,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:34,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:34,613 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:34,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:34,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:34,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:34,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:34,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:34,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:34,937 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:35,079 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:35,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:35,237 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:35,237 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:35,249 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:35,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:35,551 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:35,551 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:35,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:35,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:35,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:35,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:35,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:36,091 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:36,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:36,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:36,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:36,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:36,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:36,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:36,479 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:36,491 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:36,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:36,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:36,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:36,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:37,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:37,097 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:37,097 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:37,097 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:37,142 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:37,422 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:37,422 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:37,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:37,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:37,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:37,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:37,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:37,779 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:38,046 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:38,046 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:38,047 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:38,081 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:38,097 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:38,360 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:38,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:38,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:38,386 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:38,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:38,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:38,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:38,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:39,002 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:39,003 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:39,003 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:39,003 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:39,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:39,104 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:39,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:39,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:39,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:39,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:39,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:39,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:39,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:39,635 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:39,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:39,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:39,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:39,948 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:40,110 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:40,241 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:40,241 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:40,241 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:40,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:40,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:40,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:40,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:40,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:40,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:40,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:40,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:40,889 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:41,127 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:41,201 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:41,201 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:41,201 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:41,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:41,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:41,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:41,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:41,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:41,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:41,873 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:41,873 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:41,926 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:42,139 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:42,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:42,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:42,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:42,275 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:42,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:42,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:42,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:42,607 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:42,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:42,888 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:42,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:42,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:43,147 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:43,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:43,246 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:43,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:43,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:43,578 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:43,578 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:43,578 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:43,650 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:43,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:43,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:43,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:43,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:44,192 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:44,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:44,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:44,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:44,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:44,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:44,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:44,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:44,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:44,757 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:45,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:45,153 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:45,153 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:45,199 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:45,199 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:45,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:57:45,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:57:45,578 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:45,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:45,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:45,692 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:45,976 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:45,976 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:45,976 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:45,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:46,204 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:46,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:46,380 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:46,380 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:46,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:46,766 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:46,767 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:46,767 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:46,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:47,164 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:47,164 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:47,164 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:47,222 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:47,222 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:47,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:47,563 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:47,563 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:47,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:47,871 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:47,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:47,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:47,909 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:48,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:48,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:48,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:48,231 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:48,231 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:48,514 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:48,514 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:48,514 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:48,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:48,828 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:48,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:48,829 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:48,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:49,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:49,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:49,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:49,161 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:49,236 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:49,460 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:49,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:49,461 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:49,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:49,472 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:49,772 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:49,772 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:49,772 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:49,784 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:50,081 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:50,081 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:50,081 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:50,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:50,243 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:50,395 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:50,395 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:50,395 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:50,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:50,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:50,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:50,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:50,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:51,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:51,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:51,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:51,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:51,276 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:51,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:51,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:51,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:51,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:51,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:51,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:51,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:51,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:51,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:51,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:51,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:52,013 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:52,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:52,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:52,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:52,295 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:52,333 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:52,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:52,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:52,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:52,631 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:52,908 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:52,908 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:52,908 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:52,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:53,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:53,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:53,234 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:53,256 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:53,295 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:53,546 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:53,547 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:53,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:53,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:53,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:53,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:53,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:53,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:54,173 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:54,173 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:54,173 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:54,185 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:54,302 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:54,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:54,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:54,485 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:54,485 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:54,494 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:54,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:54,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:54,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:54,803 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:55,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:55,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:55,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:55,109 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:55,313 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:55,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:55,414 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:55,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:55,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:55,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:55,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:55,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:55,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:56,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:56,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:56,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:56,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:56,325 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:56,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:56,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:56,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:56,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:56,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:56,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:56,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:56,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:56,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:56,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:56,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:56,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:57,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:57,295 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:57,295 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:57,306 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:57,325 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:57,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:57,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:57,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:57,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:57,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:57,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:57,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:57,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:58,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:58,244 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:58,244 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:58,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:58,330 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:58,553 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:58,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:58,554 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:58,565 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:58,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:58,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:58,867 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:58,877 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:59,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:59,181 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:59,181 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:59,193 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:59,337 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:57:59,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:59,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:59,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:59,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:57:59,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:57:59,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:57:59,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:57:59,812 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:57:59,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:00,130 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:00,131 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:00,131 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:00,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:00,356 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:00,418 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:58:00,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:00,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:00,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:00,456 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:00,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:58:00,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:58:00,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:00,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:00,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:00,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:01,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:01,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:01,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:01,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:01,366 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:01,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:01,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:01,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:01,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:01,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:01,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:01,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:01,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:02,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:02,026 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:02,026 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:02,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:02,340 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:02,340 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:02,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:02,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:02,367 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:02,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:02,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:02,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:02,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:02,969 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:02,969 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:02,969 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:02,980 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:03,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:03,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:03,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:03,294 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:03,372 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:03,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:03,595 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:03,595 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:03,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:03,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:03,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:03,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:03,924 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:04,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:04,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:04,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:04,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:04,381 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:04,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:04,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:04,568 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:04,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:04,631 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:04,960 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:04,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:04,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:05,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:05,349 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:05,349 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:05,349 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:05,387 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:05,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:05,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:05,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:05,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:05,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:06,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:06,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:06,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:06,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:06,392 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:06,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:06,638 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:06,638 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:06,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:07,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:07,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:07,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:07,165 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:07,401 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:07,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:07,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:07,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:07,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:08,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:08,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:08,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:08,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:08,412 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:08,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:08,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:08,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:08,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:08,823 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:08,823 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:08,824 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:08,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:09,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:09,238 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:09,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:09,289 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:09,417 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:09,658 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:09,658 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:09,658 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:09,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:09,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:10,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:10,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:10,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:10,127 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:10,431 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:10,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:10,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:10,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:10,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:10,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:10,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:10,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:10,972 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:11,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:11,376 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:11,376 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:11,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:11,439 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:11,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:11,813 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:11,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:11,882 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:12,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:12,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:12,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:12,385 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:12,444 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:12,806 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:12,806 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:12,806 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:12,860 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:13,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:13,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:13,313 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:13,326 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:13,450 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:13,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:13,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:13,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:13,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:13,928 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:13,928 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:13,928 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:13,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:14,254 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:14,254 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:14,254 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:14,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:14,465 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:14,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:14,566 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:14,566 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:14,577 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:14,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:14,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:14,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:14,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:14,888 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:15,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:15,190 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:15,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:15,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:15,477 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:15,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:15,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:58:15,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:15,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:15,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:15,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:58:15,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:15,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:15,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:15,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:16,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:16,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:16,128 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:16,140 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:16,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:16,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:16,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:16,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:16,477 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:16,748 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:16,748 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:16,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:16,760 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:17,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:17,047 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:17,047 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:17,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:17,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:17,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:17,369 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:17,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:17,483 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:17,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:17,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:17,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:17,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:17,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:17,958 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:17,958 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:17,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:18,015 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:18,015 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:18,016 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:18,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:18,257 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:18,257 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:18,257 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:18,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:18,490 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:18,575 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:18,576 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:18,576 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:18,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:18,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:18,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:18,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:18,898 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:19,195 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:19,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:19,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:19,214 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:19,502 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:19,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:19,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:19,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:19,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:19,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:19,837 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:19,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:19,849 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:20,146 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:20,147 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:20,147 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:20,147 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:20,159 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:20,462 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:20,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:20,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:20,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:20,502 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:20,770 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:20,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:20,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:20,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:21,081 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:21,082 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:21,082 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:21,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:21,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:21,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:21,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:21,399 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:21,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:21,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:21,701 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:21,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:21,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:22,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:22,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:22,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:22,021 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:22,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:22,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:22,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:22,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:22,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:22,635 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:22,636 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:22,636 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:22,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:22,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:22,946 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:22,946 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:22,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:23,257 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:23,257 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:23,257 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:23,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:23,527 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:23,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:23,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:23,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:23,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:23,883 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:23,883 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:23,883 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:23,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:24,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:24,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:24,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:24,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:24,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:24,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:24,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:24,515 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:24,527 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:24,822 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:24,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:24,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:24,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:25,131 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:25,132 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:25,132 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:25,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:25,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:25,444 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:25,444 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:25,444 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:25,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:25,535 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:25,752 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:25,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:25,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:25,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:26,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:26,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:26,075 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:26,160 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:26,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:26,401 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:26,401 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:26,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:26,545 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:26,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:26,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:26,724 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:26,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:27,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:27,040 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:27,040 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:27,086 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:27,373 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:27,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:27,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:27,431 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:27,550 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:27,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:27,704 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:27,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:27,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:28,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:28,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:28,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:28,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:28,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:28,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:28,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:28,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:28,552 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:28,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:28,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:28,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:28,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:28,992 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:28,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:28,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:29,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:29,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:29,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:29,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:29,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:29,566 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:29,652 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:29,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:29,653 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:29,714 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:29,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:29,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:29,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:30,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:30,408 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:58:30,435 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:30,435 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:30,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:30,491 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:30,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:30,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:58:30,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:58:30,579 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:30,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:30,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:30,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:30,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:31,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:31,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:31,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:31,339 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:31,584 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:31,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:31,704 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:31,704 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:31,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:32,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:32,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:32,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:32,164 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:32,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:32,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:32,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:32,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:32,594 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:32,768 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:32,768 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:32,768 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:32,828 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:33,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:33,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:33,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:33,160 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:33,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:33,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:33,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:33,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:33,604 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:33,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:33,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:33,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:33,808 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:34,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:34,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:34,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:34,118 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:34,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:34,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:34,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:34,447 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:34,608 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:34,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:34,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:34,724 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:34,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:35,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:35,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:35,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:35,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:35,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:35,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:35,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:35,469 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:35,613 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:35,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:35,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:35,801 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:35,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:35,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:36,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:36,157 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:36,157 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:36,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:36,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:36,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:36,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:36,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:36,620 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:36,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:36,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:36,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:36,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:37,094 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:37,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:37,095 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:37,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:37,405 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:37,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:37,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:37,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:37,642 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:37,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:37,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:37,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:37,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:38,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:38,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:38,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:38,041 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:38,342 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:38,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:38,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:38,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:38,656 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:38,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:38,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:38,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:38,671 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:38,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:38,959 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:38,959 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:38,978 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:39,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:39,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:39,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:39,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:39,666 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:39,666 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:39,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:39,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:39,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:39,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:39,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:39,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:39,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:40,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:40,278 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:40,278 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:40,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:40,600 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:40,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:40,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:40,613 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:40,656 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:40,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:40,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:40,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:40,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:40,925 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:41,227 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:41,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:41,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:41,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:41,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:41,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:41,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:41,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:41,661 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:41,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:41,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:41,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:41,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:42,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:42,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:42,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:42,177 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:42,462 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:42,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:42,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:42,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:42,668 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:42,776 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:42,776 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:42,776 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:42,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:43,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:43,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:43,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:43,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:43,404 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:43,404 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:43,404 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:43,423 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:43,680 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:43,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:43,728 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:43,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:43,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:44,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:44,041 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:44,041 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:44,052 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:44,356 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:44,356 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:44,356 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:44,375 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:44,667 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:44,667 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:44,667 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:44,687 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:44,687 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:44,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:44,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:44,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:45,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:45,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:45,306 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:45,306 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:45,339 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:45,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:58:45,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:58:45,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:45,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:45,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:45,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:45,688 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:45,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:45,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:45,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:45,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:45,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:46,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:46,257 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:46,257 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:46,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:46,563 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:46,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:46,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:46,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:46,699 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:46,915 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:46,916 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:46,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:46,981 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:47,284 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:47,285 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:47,285 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:47,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:47,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:47,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:47,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:47,701 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:47,722 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:48,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:48,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:48,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:48,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:48,388 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:48,389 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:48,389 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:48,420 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:48,686 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:48,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:48,686 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:48,704 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:48,727 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:49,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:49,015 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:49,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:49,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:49,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:49,351 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:49,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:49,391 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:49,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:49,635 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:49,635 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:49,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:49,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:49,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:49,952 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:49,952 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:49,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:50,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:50,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:50,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:50,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:50,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:50,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:50,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:50,601 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:50,711 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:50,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:50,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:50,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:50,908 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:51,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:51,209 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:51,209 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:51,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:51,223 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:51,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:51,521 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:51,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:51,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:51,721 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:51,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:51,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:51,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:51,844 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:52,143 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:52,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:52,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:52,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:52,456 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:52,457 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:52,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:52,496 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:52,738 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:52,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:52,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:52,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:52,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:53,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:53,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:53,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:53,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:53,460 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:53,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:53,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:53,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:53,750 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:53,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:53,789 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:53,789 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:53,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:54,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:54,108 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:54,109 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:54,164 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:54,435 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:54,435 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:54,435 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:54,491 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:54,765 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:54,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:54,765 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:54,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:54,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:55,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:55,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:55,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:55,152 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:55,508 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:55,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:55,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:55,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:55,760 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:55,912 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:55,912 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:55,912 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:55,949 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:56,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:56,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:56,309 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:56,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:58:56,343 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:56,696 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:56,696 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:56,696 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:56,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:56,761 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:57,000 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:57,000 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:57,000 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:57,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:57,314 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:57,314 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:57,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:57,333 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:57,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:57,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:57,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:57,651 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:57,769 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:57,950 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:57,951 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:57,951 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:57,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:58,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:58,262 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:58,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:58,275 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:58,578 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:58,578 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:58,578 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:58,590 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:58,777 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:58,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:58,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:58,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:58,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:59,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:59,204 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:59,204 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:59,216 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:59,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:59,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:59,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:59,531 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:58:59,789 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:58:59,830 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:58:59,830 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:58:59,830 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:58:59,843 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:00,138 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:00,138 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:00,138 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:00,158 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:00,409 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:59:00,460 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:00,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:00,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:00,479 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:00,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:59:00,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:59:00,790 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:00,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:00,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:00,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:00,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:01,101 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:01,102 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:01,102 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:01,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:01,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:01,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:01,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:01,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:01,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:01,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:01,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:01,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:01,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:01,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:02,063 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:02,064 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:02,064 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:02,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:02,373 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:02,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:02,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:02,391 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:02,688 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:02,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:02,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:02,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:02,803 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:02,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:02,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:02,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:03,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:03,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:03,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:03,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:03,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:03,613 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:03,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:03,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:03,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:03,807 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:03,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:03,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:03,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:03,946 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:04,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:04,249 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:04,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:04,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:04,573 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:04,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:04,574 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:04,586 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:04,829 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:04,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:04,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:04,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:04,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:05,195 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:05,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:05,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:05,231 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:05,513 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:05,514 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:05,514 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:05,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:05,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:05,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:05,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:05,834 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:05,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:06,131 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:06,131 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:06,131 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:06,190 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:06,462 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:06,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:06,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:06,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:06,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:06,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:06,765 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:06,765 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:06,805 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:06,835 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:07,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:07,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:07,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:07,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:07,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:07,397 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:07,397 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:07,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:07,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:07,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:07,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:07,741 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:07,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:08,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:08,032 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:08,032 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:08,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:08,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:08,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:08,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:08,354 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:08,658 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:08,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:08,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:08,671 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:08,845 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:08,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:08,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:08,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:08,980 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:09,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:09,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:09,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:09,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:09,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:09,616 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:09,616 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:09,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:09,863 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:09,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:09,929 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:09,930 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:09,941 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:10,231 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:10,231 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:10,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:10,249 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:10,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:10,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:10,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:10,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:10,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:10,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:10,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:10,870 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:10,870 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:11,178 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:11,178 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:11,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:11,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:11,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:11,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:11,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:11,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:11,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:11,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:11,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:11,800 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:11,819 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:11,871 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:12,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:12,113 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:12,113 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:12,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:12,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:12,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:12,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:12,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:12,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:12,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:12,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:12,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:12,877 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:13,053 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:13,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:13,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:13,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:13,377 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:13,377 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:13,377 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:13,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:13,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:13,685 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:13,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:13,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:13,879 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:14,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:14,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:14,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:14,055 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:14,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:14,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:14,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:14,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:14,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:14,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:14,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:14,779 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:14,886 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:15,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:15,056 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:15,056 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:15,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:15,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:15,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:15,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:15,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:59:15,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:15,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:59:15,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:15,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:15,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:15,891 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:15,913 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:16,251 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:16,251 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:16,251 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:16,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:16,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:16,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:16,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:16,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:16,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:16,895 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:17,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:17,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:17,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:17,116 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:17,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:17,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:17,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:17,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:17,907 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:17,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:17,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:17,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:17,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:18,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:18,366 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:18,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:18,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:18,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:18,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:18,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:18,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:18,917 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:19,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:19,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:19,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:19,285 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:19,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:19,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:19,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:19,724 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:19,926 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:20,062 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:20,062 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:20,062 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:20,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:20,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:20,380 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:20,380 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:20,403 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:20,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:20,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:20,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:20,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:20,946 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:20,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:20,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:20,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:21,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:21,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:21,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:21,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:21,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:21,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:21,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:21,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:21,627 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:21,919 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:21,919 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:21,919 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:21,920 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:21,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:21,946 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:22,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:22,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:22,241 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:22,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:22,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:22,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:22,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:22,564 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:22,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:22,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:22,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:22,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:22,951 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:23,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:23,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:23,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:23,204 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:23,500 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:23,500 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:23,500 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:23,544 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:23,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:23,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:23,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:23,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:23,956 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:24,115 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:24,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:24,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:24,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:24,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:24,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:24,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:24,466 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:24,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:24,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:24,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:24,810 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:24,971 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:25,065 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:25,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:25,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:25,098 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:25,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:25,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:25,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:25,392 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:25,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:25,696 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:25,696 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:25,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:25,983 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:25,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:25,998 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:25,998 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:26,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:26,323 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:26,324 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:26,324 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:26,335 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:26,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:26,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:26,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:26,651 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:26,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:26,939 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:26,939 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:26,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:26,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:26,983 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:27,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:27,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:27,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:27,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:27,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:27,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:27,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:27,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:27,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:27,890 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:27,890 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:27,902 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:27,989 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:28,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:28,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:28,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:28,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:28,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:28,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:28,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:28,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:28,811 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:28,811 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:28,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:28,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:28,995 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:29,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:29,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:29,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:29,147 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:29,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:29,450 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:29,450 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:29,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:29,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:29,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:29,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:29,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:30,017 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:30,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:30,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:30,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:30,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:30,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:30,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:30,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:30,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:30,410 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-08 23:59:30,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:59:30,493 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:59:30,688 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:30,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:30,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:30,701 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:31,003 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:31,003 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:31,004 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:31,016 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:31,017 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:31,301 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:31,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:31,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:31,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:31,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:31,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:31,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:31,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:31,934 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:31,934 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:31,934 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:31,946 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:31,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:32,023 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:32,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:32,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:32,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:32,256 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:32,555 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:32,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:32,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:32,567 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:32,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:32,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:32,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:32,901 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:33,029 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:33,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:33,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:33,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:33,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:33,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:33,489 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:33,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:33,543 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:33,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:33,797 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:33,797 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:33,838 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:34,045 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:34,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:34,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:34,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:34,163 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:34,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:34,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:34,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:34,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:34,751 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:34,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:34,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:34,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:35,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:35,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:35,055 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:35,055 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:35,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:35,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:35,380 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:35,380 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:35,391 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:35,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:35,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:35,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:35,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:36,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:36,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:36,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:36,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:36,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:36,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:36,309 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:36,309 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:36,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:36,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:36,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:36,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:36,671 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:36,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:36,958 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:36,958 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:36,958 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:37,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:37,060 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:37,295 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:37,295 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:37,295 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:37,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:37,617 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:37,618 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:37,618 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:37,674 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:37,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:37,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:37,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:37,994 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:38,069 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:38,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:38,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:38,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:38,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:38,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:38,578 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:38,578 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:38,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:38,899 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:38,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:38,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:38,963 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:39,075 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:39,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:39,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:39,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:39,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:39,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:39,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:39,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:39,645 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:39,907 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:39,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:39,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:39,953 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:40,083 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:40,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:40,342 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:40,342 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:40,403 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:40,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:40,731 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:40,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:40,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:41,100 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:41,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:41,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:41,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:41,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:41,583 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:41,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:41,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:41,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:41,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:41,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:41,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:41,964 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:41,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:42,100 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:42,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:42,348 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:42,348 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:42,377 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:42,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:42,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:42,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:42,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:42,981 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:42,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:42,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:43,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:43,109 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:43,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:43,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:43,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:43,341 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:43,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:43,609 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:43,609 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:43,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:43,926 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:43,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:43,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:43,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:44,115 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:44,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:44,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:44,240 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:44,256 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:44,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:44,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:44,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:44,566 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:44,855 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:44,855 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:44,855 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:44,874 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:45,127 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:45,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:45,179 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:45,179 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:45,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:45,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:45,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:45,484 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:45,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-08 23:59:45,495 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:45,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-08 23:59:45,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:45,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:45,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:45,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:46,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:46,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:46,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:46,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:46,128 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:46,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:46,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:46,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:46,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:46,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:46,731 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:46,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:46,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:47,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:47,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:47,042 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:47,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:47,054 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:47,135 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:47,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:47,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:47,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:47,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:47,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:47,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:47,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:47,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:47,973 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:47,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:47,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:48,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:48,140 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:48,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:48,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:48,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:48,336 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:48,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:48,602 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:48,602 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:48,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:48,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:48,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:48,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:48,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:49,161 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:49,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:49,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:49,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:49,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:49,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:49,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:49,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:49,565 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:49,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:49,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:49,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:49,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:50,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:50,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:50,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:50,174 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:50,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:50,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:50,474 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:50,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:50,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:50,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:50,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:50,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:50,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:51,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:51,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:51,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:51,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:51,179 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:51,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:51,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:51,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:51,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:51,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:51,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:51,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:51,744 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:52,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:52,040 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:52,040 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:52,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:52,052 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:52,191 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:52,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:52,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:52,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:52,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:52,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:52,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:52,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:52,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:52,958 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:52,958 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:52,958 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:52,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:53,211 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:53,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:53,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:53,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:53,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:53,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:53,594 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:53,594 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:53,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:53,904 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:53,905 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:53,905 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:53,917 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:54,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:54,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:54,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:54,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:54,225 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:54,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:54,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:54,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:54,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:54,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:54,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:54,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:54,849 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:55,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:55,150 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:55,150 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:55,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:55,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:55,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:55,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:55,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:55,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:55,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:55,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:55,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:55,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:56,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:56,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:56,097 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:56,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:56,222 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:56,402 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:56,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:56,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:56,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:56,717 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:56,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:56,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:56,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:57,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:57,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:57,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:57,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:57,229 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:57,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:57,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:57,353 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:57,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-08 23:59:57,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:57,666 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:57,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:57,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:57,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:57,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:57,980 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:57,980 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:57,993 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:58,247 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:58,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:58,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:58,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:58,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:58,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:58,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:58,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:58,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:58,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:58,949 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:58,949 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:59,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:59,259 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-08 23:59:59,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:59,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:59,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:59,369 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:59,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:59,629 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:59,629 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-08 23:59:59,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-08 23:59:59,961 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-08 23:59:59,962 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-08 23:59:59,962 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:00,032 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:00,271 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:00,291 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:00,292 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:00,292 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:00,347 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:00,415 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:00:00,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:00:00,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:00:00,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:00,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:00,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:00,687 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:00,949 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:00,950 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:00,950 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:01,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:01,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:01,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:01,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:01,276 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:01,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:01,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:01,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:01,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:01,645 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:01,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:01,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:01,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:01,992 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:02,253 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:02,254 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:02,254 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:02,277 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:02,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:02,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:02,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:02,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:02,575 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:02,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:02,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:02,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:02,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:02,955 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:03,205 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:03,205 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:03,205 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:03,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:03,281 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:03,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:03,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:03,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:03,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:03,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:03,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:03,850 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:03,999 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:04,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:04,199 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:04,199 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:04,271 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:04,285 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:04,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:04,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:04,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:04,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:04,847 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:04,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:04,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:04,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:05,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:05,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:05,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:05,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:05,296 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:05,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:05,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:05,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:05,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:05,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:05,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:05,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:06,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:06,302 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:06,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:06,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:06,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:06,493 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:06,923 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:06,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:06,924 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:07,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:07,321 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:07,374 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:07,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:07,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:07,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:07,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:07,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:07,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:07,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:07,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:08,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:08,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:08,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:08,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:08,326 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:08,540 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:08,540 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:08,541 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:08,566 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:08,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:08,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:08,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:08,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:09,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:09,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:09,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:09,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:09,335 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:09,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:09,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:09,484 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:09,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:09,781 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:09,782 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:09,782 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:09,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:10,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:10,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:10,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:10,110 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:10,354 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:10,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:10,400 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:10,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:10,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:10,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:10,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:10,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:10,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:11,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:11,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:11,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:11,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:11,356 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:11,357 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:11,357 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:11,365 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:11,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:11,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:11,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:11,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:11,674 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:11,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:11,976 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:11,976 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:11,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:12,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:12,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:12,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:12,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:12,371 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:12,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:12,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:12,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:12,603 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:12,905 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:12,905 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:12,905 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:12,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:12,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:13,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:13,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:13,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:13,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:13,376 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:13,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:13,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:13,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:13,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:13,826 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:13,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:13,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:13,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:14,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:14,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:14,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:14,147 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:14,398 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:14,454 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:14,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:14,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:14,465 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:14,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:14,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:14,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:14,776 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:15,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:15,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:15,078 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:15,090 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:15,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:15,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:15,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:15,398 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:15,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:15,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:00:15,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:00:15,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:15,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:15,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:15,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:16,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:16,020 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:16,020 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:16,031 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:16,333 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:16,334 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:16,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:16,345 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:16,399 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:16,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:16,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:16,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:16,651 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:16,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:16,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:16,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:16,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:17,261 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:17,262 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:17,262 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:17,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:17,404 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:17,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:17,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:17,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:17,585 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:17,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:17,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:17,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:17,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:18,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:18,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:18,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:18,194 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:18,204 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:18,423 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:18,500 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:18,501 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:18,501 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:18,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:18,811 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:18,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:18,812 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:18,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:19,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:19,116 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:19,116 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:19,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:19,430 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:19,431 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:19,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:19,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:19,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:19,757 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:19,758 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:19,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:19,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:20,073 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:20,074 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:20,074 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:20,084 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:20,374 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:20,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:20,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:20,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:20,431 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:20,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:20,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:20,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:20,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:21,015 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:21,016 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:21,016 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:21,027 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:21,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:21,318 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:21,318 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:21,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:21,435 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:21,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:21,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:21,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:21,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:21,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:21,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:21,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:21,971 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:22,280 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:22,280 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:22,280 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:22,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:22,440 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:22,594 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:22,595 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:22,595 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:22,621 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:22,923 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:22,923 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:22,923 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:22,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:23,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:23,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:23,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:23,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:23,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:23,448 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:23,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:23,571 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:23,571 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:23,591 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:23,891 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:23,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:23,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:23,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:24,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:24,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:24,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:24,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:24,454 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:24,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:24,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:24,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:24,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:24,887 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:24,887 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:24,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:24,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:25,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:25,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:25,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:25,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:25,464 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:25,661 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:25,661 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:25,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:25,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:26,083 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:26,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:26,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:26,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:26,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:26,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:26,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:26,483 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:26,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:26,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:26,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:26,917 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:26,946 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:27,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:27,313 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:27,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:27,343 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:27,489 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:27,693 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:27,693 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:27,693 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:27,723 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:28,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:28,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:28,046 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:28,075 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:28,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:28,387 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:28,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:28,388 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:28,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:28,502 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:28,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:28,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:28,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:28,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:29,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:29,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:29,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:29,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:29,417 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:29,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:29,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:29,457 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:29,507 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:29,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:29,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:29,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:29,823 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:30,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:30,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:30,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:30,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:30,415 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:00:30,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:00:30,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:00:30,513 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:30,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:30,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:30,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:30,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:30,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:30,937 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:30,937 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:30,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:31,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:31,249 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:31,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:31,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:31,519 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:31,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:31,563 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:31,563 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:31,574 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:31,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:31,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:31,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:31,880 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:32,184 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:32,184 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:32,185 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:32,196 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:32,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:32,500 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:32,500 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:32,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:32,520 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:32,811 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:32,811 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:32,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:32,823 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:33,120 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:33,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:33,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:33,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:33,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:33,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:33,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:33,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:33,443 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:33,524 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:33,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:33,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:33,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:33,754 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:34,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:34,057 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:34,057 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:34,068 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:34,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:34,365 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:34,365 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:34,376 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:34,529 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:34,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:34,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:34,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:34,686 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:34,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:34,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:34,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:35,003 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:35,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:35,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:35,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:35,308 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:35,540 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:35,598 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:35,598 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:35,598 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:35,617 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:35,918 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:35,919 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:35,919 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:35,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:36,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:36,231 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:36,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:36,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:36,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:36,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:36,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:36,551 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:36,580 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:36,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:36,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:36,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:36,867 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:37,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:37,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:37,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:37,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:37,477 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:37,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:37,478 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:37,489 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:37,552 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:37,778 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:37,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:37,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:37,797 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:38,094 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:38,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:38,095 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:38,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:38,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:38,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:38,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:38,424 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:38,560 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:38,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:38,723 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:38,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:38,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:38,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:39,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:39,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:39,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:39,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:39,346 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:39,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:39,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:39,571 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:39,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:39,757 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:39,757 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:39,757 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:39,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:39,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:39,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:39,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:40,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:40,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:40,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:40,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:40,583 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:40,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:40,657 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:40,657 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:40,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:40,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:40,938 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:40,939 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:40,939 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:40,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:41,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:41,249 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:41,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:41,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:41,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:41,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:41,563 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:41,577 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:41,583 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:41,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:41,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:41,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:41,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:42,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:42,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:42,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:42,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:42,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:42,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:42,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:42,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:42,590 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:42,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:42,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:42,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:42,815 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:43,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:43,113 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:43,113 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:43,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:43,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:43,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:43,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:43,599 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:43,922 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:44,038 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:44,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:44,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:44,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:44,248 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:44,248 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:44,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:44,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:44,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:44,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:44,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:44,574 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:44,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:44,600 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:45,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:45,040 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:45,040 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:45,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:45,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:00:45,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:00:45,717 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:46,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:46,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:46,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:46,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:46,882 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:47,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:47,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:47,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:47,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:47,742 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:47,742 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:47,742 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:47,887 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:48,080 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:48,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:48,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:48,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:48,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:48,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:48,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:48,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:48,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:48,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:48,896 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:48,897 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:48,897 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:48,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:49,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:49,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:49,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:49,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:49,686 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:49,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:49,746 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:49,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:49,904 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:50,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:50,184 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:50,185 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:50,185 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:50,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:50,546 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:50,546 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:50,546 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:50,585 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:50,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:50,902 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:50,902 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:50,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:50,977 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:52,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:52,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:52,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:53,116 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:53,556 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:54,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:54,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:54,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:54,141 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:54,608 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:55,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:00:56,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:56,848 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:56,848 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:57,322 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:00:58,017 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:00:58,435 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:00:59,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:00:59,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:00:59,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:00,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:00,416 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:01:00,447 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:00,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:01:00,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:01:01,009 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:01,009 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:01,009 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:01,232 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:01,455 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:03,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:03,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:03,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:03,440 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:03,777 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:05,023 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:05,023 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:05,024 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:05,175 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:05,959 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:06,175 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:07,007 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:07,007 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:07,007 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:07,188 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:07,997 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:08,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:08,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:08,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:08,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:09,197 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:10,225 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:10,225 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:10,225 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:10,326 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:11,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:11,340 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:11,524 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:11,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:11,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:11,646 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:12,349 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:12,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:12,813 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:12,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:12,839 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:13,362 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:13,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:13,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:13,652 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:13,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:14,404 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:14,559 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:14,559 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:14,560 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:14,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:15,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:15,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:15,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:15,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:15,425 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:15,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:01:15,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:01:15,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:15,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:15,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:15,815 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:16,437 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:16,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:16,536 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:16,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:16,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:16,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:16,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:16,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:16,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:17,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:17,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:17,383 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:17,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:17,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:17,439 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:17,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:17,832 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:17,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:17,864 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:18,143 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:18,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:18,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:18,156 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:18,451 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:18,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:18,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:18,452 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:18,461 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:18,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:18,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:18,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:18,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:19,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:19,084 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:19,084 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:19,095 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:19,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:19,387 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:19,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:19,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:19,442 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:19,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:19,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:19,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:19,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:20,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:20,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:20,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:20,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:20,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:20,309 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:20,309 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:20,330 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:20,447 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:20,630 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:20,631 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:20,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:20,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:20,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:20,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:20,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:20,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:21,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:21,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:21,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:21,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:21,452 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:21,550 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:21,551 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:21,551 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:21,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:21,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:21,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:21,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:21,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:21,872 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:22,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:22,176 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:22,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:22,187 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:22,464 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:22,486 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:22,486 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:22,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:22,496 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:22,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:22,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:22,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:22,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:23,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:23,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:23,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:23,117 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:23,417 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:23,417 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:23,417 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:23,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:23,464 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:23,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:23,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:23,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:23,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:24,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:24,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:24,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:24,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:24,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:24,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:24,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:24,375 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:24,469 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:24,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:24,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:24,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:24,686 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:24,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:24,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:24,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:24,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:25,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:25,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:25,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:25,305 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:25,477 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:25,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:25,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:25,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:25,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:25,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:25,916 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:25,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:25,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:26,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:26,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:26,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:26,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:26,489 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:26,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:26,530 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:26,530 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:26,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:26,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:26,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:26,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:26,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:26,851 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:27,139 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:27,139 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:27,139 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:27,164 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:27,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:27,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:27,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:27,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:27,489 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:27,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:27,776 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:27,776 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:27,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:28,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:28,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:28,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:28,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:28,388 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:28,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:28,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:28,410 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:28,494 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:28,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:28,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:28,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:28,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:29,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:29,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:29,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:29,054 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:29,339 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:29,339 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:29,339 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:29,354 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:29,498 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:29,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:29,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:29,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:29,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:29,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:29,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:29,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:29,976 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:30,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:30,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:30,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:30,290 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:30,419 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:01:30,507 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:01:30,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:01:30,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:30,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:30,638 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:30,638 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:30,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:30,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:30,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:30,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:30,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:31,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:31,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:31,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:31,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:31,522 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:31,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:31,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:31,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:31,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:31,847 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:31,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:31,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:31,847 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:31,874 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:32,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:32,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:32,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:32,177 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:32,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:32,491 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:32,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:32,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:32,523 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:32,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:32,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:32,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:32,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:33,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:33,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:33,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:33,526 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:33,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:34,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:34,203 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:34,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:34,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:34,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:34,647 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:34,647 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:34,711 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:34,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:34,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:34,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:34,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:35,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:35,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:35,346 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:35,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:35,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:35,712 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:35,869 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:35,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:35,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:35,994 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:36,239 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:36,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:36,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:36,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:36,543 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:36,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:36,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:36,564 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:36,725 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:36,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:36,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:36,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:36,788 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:37,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:37,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:37,240 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:37,242 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:37,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:37,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:37,736 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:37,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:37,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:37,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:38,855 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:39,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:39,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:39,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:39,277 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:39,970 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:41,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:41,523 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:41,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:41,692 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:42,149 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:42,692 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:42,828 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:42,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:42,828 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:43,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:43,291 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:44,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:44,757 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:44,757 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:44,839 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:45,438 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:45,509 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:01:45,510 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:01:46,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:46,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:46,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:46,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:47,544 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:47,709 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:48,494 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:48,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:48,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:48,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:49,593 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:50,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:50,258 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:50,258 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:50,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:50,680 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:51,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:51,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:51,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:52,081 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:52,772 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:53,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:53,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:53,458 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:53,458 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:53,598 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:53,820 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:54,553 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:54,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:54,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:54,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:54,996 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:55,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:55,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:55,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:55,650 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:56,003 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:56,831 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:56,831 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:56,831 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:57,000 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:57,073 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:57,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:57,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:57,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:57,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:58,171 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:58,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:01:58,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:58,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:58,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:01:59,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:01:59,281 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:01:59,995 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:01:59,995 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:01:59,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:00,040 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:00,375 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:00,419 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:02:00,510 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:02:00,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:02:01,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:01,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:01,382 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:01,527 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:02,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:02,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:02,396 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:02,539 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:02,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:03,416 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:03,416 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:03,416 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:03,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:03,548 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:04,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:04,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:04,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:04,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:04,431 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:04,554 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:05,270 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:05,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:05,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:05,350 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:05,610 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:06,010 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:06,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:06,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:06,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:06,539 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:06,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:06,540 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:06,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:06,611 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:06,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:06,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:06,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:06,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:07,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:07,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:07,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:07,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:07,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:07,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:07,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:07,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:07,618 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:07,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:07,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:07,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:07,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:08,083 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:08,083 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:08,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:08,118 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:08,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:08,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:08,396 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:08,423 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:08,627 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:08,729 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:08,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:08,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:08,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:09,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:09,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:09,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:09,078 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:09,348 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:09,349 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:09,349 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:09,398 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:09,639 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:09,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:09,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:09,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:09,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:09,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:09,961 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:09,962 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:09,962 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:09,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:10,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:10,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:10,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:10,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:10,596 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:10,596 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:10,596 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:10,615 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:10,640 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:10,899 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:10,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:10,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:10,918 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:11,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:11,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:11,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:11,265 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:11,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:11,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:11,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:11,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:11,645 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:11,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:11,851 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:11,851 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:11,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:12,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:12,152 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:12,152 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:12,171 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:12,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:12,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:12,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:12,607 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:12,650 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:12,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:12,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:12,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:12,797 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:13,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:13,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:13,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:13,283 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:13,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:13,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:13,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:13,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:13,669 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:13,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:13,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:13,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:13,724 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:14,022 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:14,023 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:14,023 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:14,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:14,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:14,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:14,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:14,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:14,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:14,649 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:14,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:14,661 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:14,669 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:14,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:14,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:14,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:14,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:14,974 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:15,280 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:15,281 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:15,281 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:15,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:15,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:02:15,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:02:15,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:15,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:15,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:15,670 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:15,686 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:15,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:15,893 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:15,893 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:15,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:16,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:16,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:16,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:16,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:16,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:16,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:16,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:16,541 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:16,677 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:16,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:16,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:16,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:16,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:17,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:17,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:17,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:17,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:17,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:17,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:17,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:17,474 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:17,698 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:17,776 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:17,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:17,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:17,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:18,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:18,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:18,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:18,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:18,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:18,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:18,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:18,410 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:18,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:18,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:18,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:18,712 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:18,721 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:19,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:19,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:19,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:19,036 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:19,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:19,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:19,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:19,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:19,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:19,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:19,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:19,657 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:19,712 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:19,950 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:19,950 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:19,950 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:19,963 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:19,964 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:20,251 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:20,251 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:20,251 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:20,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:20,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:20,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:20,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:20,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:20,717 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:20,882 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:20,883 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:20,883 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:20,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:21,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:21,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:21,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:21,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:21,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:21,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:21,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:21,530 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:21,722 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:21,811 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:21,811 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:21,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:21,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:22,111 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:22,111 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:22,111 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:22,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:22,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:22,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:22,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:22,491 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:22,734 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:22,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:22,745 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:22,745 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:22,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:23,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:23,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:23,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:23,147 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:23,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:23,429 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:23,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:23,496 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:23,740 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:23,855 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:23,855 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:23,855 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:23,949 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:24,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:24,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:24,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:24,336 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:24,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:24,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:24,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:24,743 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:24,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:25,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:25,119 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:25,119 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:25,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:25,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:25,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:25,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:25,537 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:25,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:25,766 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:25,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:25,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:25,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:26,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:26,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:26,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:26,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:26,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:26,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:26,737 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:26,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:26,772 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:26,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:27,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:27,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:27,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:27,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:27,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:27,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:27,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:27,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:27,784 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:27,824 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:27,824 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:27,824 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:27,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:28,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:28,322 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:28,322 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:28,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:28,796 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:28,815 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:28,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:28,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:28,840 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:29,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:29,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:29,537 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:29,586 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:29,809 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:30,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:30,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:30,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:30,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:30,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:30,420 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:02:30,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:02:30,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:02:30,821 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:30,871 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:30,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:30,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:30,913 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:31,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:31,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:31,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:31,465 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:31,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:31,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:31,964 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:31,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:32,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:32,516 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:32,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:32,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:32,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:32,849 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:33,086 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:33,086 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:33,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:33,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:33,680 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:33,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:33,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:33,717 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:33,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:34,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:34,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:34,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:34,334 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:34,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:34,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:34,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:34,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:34,857 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:35,147 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:35,147 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:35,147 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:35,277 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:35,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:35,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:35,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:35,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:35,885 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:35,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:36,508 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:36,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:36,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:36,540 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:36,899 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:37,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:37,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:37,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:37,130 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:37,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:37,799 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:37,799 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:37,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:37,907 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:38,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:38,448 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:38,448 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:38,489 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:38,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:38,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:38,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:38,915 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:38,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:39,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:39,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:39,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:39,237 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:39,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:39,536 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:39,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:39,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:39,853 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:39,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:39,854 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:39,872 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:39,915 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:40,164 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:40,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:40,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:40,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:40,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:40,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:40,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:40,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:40,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:40,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:40,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:40,804 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:40,920 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:41,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:41,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:41,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:41,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:41,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:41,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:41,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:41,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:41,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:41,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:41,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:41,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:41,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:41,926 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:42,041 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:42,041 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:42,041 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:42,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:42,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:42,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:42,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:42,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:42,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:42,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:42,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:42,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:42,938 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:42,969 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:42,969 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:42,969 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:42,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:43,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:43,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:43,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:43,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:43,596 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:43,597 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:43,597 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:43,609 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:43,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:43,896 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:43,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:43,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:43,938 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:44,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:44,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:44,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:44,273 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:44,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:44,530 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:44,530 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:44,541 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:44,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:44,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:44,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:44,854 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:44,947 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:45,157 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:45,157 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:45,157 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:45,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:45,460 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:45,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:45,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:45,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:45,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:02:45,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:02:45,778 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:45,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:45,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:45,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:45,952 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:46,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:46,092 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:46,092 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:46,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:46,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:46,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:46,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:46,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:46,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:46,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:46,715 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:46,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:46,727 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:46,972 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:47,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:47,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:47,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:47,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:47,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:47,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:47,337 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:47,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:47,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:47,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:47,652 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:47,662 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:47,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:47,964 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:47,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:47,972 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:47,974 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:48,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:48,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:48,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:48,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:48,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:48,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:48,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:48,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:48,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:48,884 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:48,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:48,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:48,978 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:49,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:49,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:49,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:49,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:49,516 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:49,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:49,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:49,531 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:49,826 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:49,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:49,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:49,847 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:49,984 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:50,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:50,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:50,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:50,147 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:50,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:50,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:50,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:50,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:50,760 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:50,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:50,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:50,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:51,004 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:51,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:51,072 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:51,072 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:51,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:51,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:51,375 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:51,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:51,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:51,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:51,699 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:51,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:51,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:51,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:52,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:52,004 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:52,004 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:52,014 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:52,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:52,325 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:52,325 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:52,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:52,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:52,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:52,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:52,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:52,649 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:52,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:52,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:52,948 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:52,968 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:53,015 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:53,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:53,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:53,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:53,273 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:53,567 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:53,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:53,568 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:53,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:53,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:53,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:53,880 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:53,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:54,024 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:54,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:54,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:54,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:54,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:54,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:54,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:54,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:54,509 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:54,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:54,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:54,810 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:54,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:55,028 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:55,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:55,121 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:55,121 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:55,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:55,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:55,425 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:55,425 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:55,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:55,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:55,735 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:55,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:55,765 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:56,040 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:56,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:56,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:56,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:56,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:56,376 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:56,376 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:56,376 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:56,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:56,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:56,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:56,686 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:56,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:56,713 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:02:57,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:57,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:57,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:57,032 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:57,040 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:57,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:57,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:57,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:57,338 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:57,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:57,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:57,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:57,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:57,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:57,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:57,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:57,968 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:58,044 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:58,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:58,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:58,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:58,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:58,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:58,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:58,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:58,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:59,052 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:59,052 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:02:59,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:59,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:59,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:59,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:59,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:59,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:59,465 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:02:59,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:02:59,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:02:59,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:02:59,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:00,059 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:00,059 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:00,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:00,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:00,080 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:00,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:00,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:00,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:00,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:00,421 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:03:00,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:03:00,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:03:00,688 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:00,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:00,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:00,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:01,009 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:01,009 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:01,010 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:01,020 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:01,059 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:01,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:01,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:01,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:01,339 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:01,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:01,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:01,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:01,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:01,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:01,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:01,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:01,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:01,962 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:02,066 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:02,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:02,267 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:02,267 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:02,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:02,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:02,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:02,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:02,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:02,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:02,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:02,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:02,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:03,070 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:03,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:03,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:03,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:03,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:03,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:03,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:03,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:03,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:03,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:03,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:03,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:03,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:04,079 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:04,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:04,148 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:04,148 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:04,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:04,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:04,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:04,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:04,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:04,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:04,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:04,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:04,797 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:05,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:05,085 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:05,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:05,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:05,104 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:05,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:05,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:05,412 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:05,423 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:05,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:05,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:05,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:05,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:06,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:06,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:06,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:06,040 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:06,085 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:06,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:06,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:06,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:06,350 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:06,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:06,644 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:06,644 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:06,663 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:06,969 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:06,969 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:06,969 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:06,969 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:07,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:07,090 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:07,281 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:07,281 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:07,282 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:07,307 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:07,606 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:07,607 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:07,607 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:07,651 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:07,918 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:07,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:07,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:07,962 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:08,096 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:08,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:08,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:08,241 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:08,285 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:08,573 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:08,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:08,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:08,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:08,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:08,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:08,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:08,973 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:09,104 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:09,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:09,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:09,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:09,330 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:09,619 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:09,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:09,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:09,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:09,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:09,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:09,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:10,004 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:10,108 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:10,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:10,359 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:10,359 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:10,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:10,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:10,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:10,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:10,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:10,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:10,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:10,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:11,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:11,114 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:11,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:11,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:11,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:11,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:11,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:11,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:11,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:11,655 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:11,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:11,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:11,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:11,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:12,120 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:12,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:12,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:12,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:12,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:12,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:12,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:12,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:12,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:12,580 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:12,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:12,882 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:12,882 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:12,893 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:13,138 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:13,194 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:13,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:13,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:13,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:13,494 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:13,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:13,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:13,514 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:13,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:13,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:13,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:13,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:14,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:14,119 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:14,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:14,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:14,138 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:14,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:14,433 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:14,433 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:14,444 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:14,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:14,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:14,744 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:14,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:15,055 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:15,055 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:15,056 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:15,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:15,145 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:15,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:15,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:15,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:15,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:15,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:03:15,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:03:15,688 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:15,689 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:15,689 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:15,701 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:15,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:16,000 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:16,000 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:16,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:16,151 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:16,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:16,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:16,311 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:16,322 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:16,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:16,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:16,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:16,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:16,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:16,946 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:16,946 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:16,972 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:17,156 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:17,274 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:17,274 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:17,274 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:17,274 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:17,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:17,601 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:17,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:17,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:17,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:17,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:17,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:17,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:17,967 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:18,173 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:18,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:18,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:18,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:18,285 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:18,575 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:18,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:18,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:18,602 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:18,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:18,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:18,917 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:18,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:19,180 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:19,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:19,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:19,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:19,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:19,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:19,718 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:19,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:19,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:20,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:20,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:20,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:20,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:20,180 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:20,433 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:20,433 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:20,433 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:20,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:20,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:20,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:20,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:20,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:21,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:21,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:21,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:21,062 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:21,186 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:21,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:21,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:21,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:21,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:21,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:21,673 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:21,673 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:21,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:21,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:21,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:21,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:21,990 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:22,204 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:22,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:22,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:22,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:22,293 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:22,308 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:22,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:22,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:22,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:22,612 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:22,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:22,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:22,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:22,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:23,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:23,216 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:23,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:23,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:23,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:23,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:23,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:23,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:23,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:23,847 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:23,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:23,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:23,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:24,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:24,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:24,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:24,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:24,216 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:24,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:24,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:24,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:24,489 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:24,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:24,774 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:24,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:24,798 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:25,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:25,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:25,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:25,110 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:25,221 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:25,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:25,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:25,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:25,433 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:25,734 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:25,735 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:25,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:25,756 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:26,044 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:26,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:26,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:26,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:26,229 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:26,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:26,364 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:26,364 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:26,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:26,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:26,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:26,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:26,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:26,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:26,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:26,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:27,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:27,242 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:27,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:27,306 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:27,306 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:27,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:27,323 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:27,618 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:27,618 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:27,618 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:27,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:27,937 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:27,937 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:27,938 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:27,949 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:28,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:28,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:28,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:28,254 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:28,256 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:28,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:28,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:28,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:28,567 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:28,867 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:28,868 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:28,868 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:28,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:29,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:29,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:29,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:29,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:29,255 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:29,490 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:29,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:29,491 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:29,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:29,799 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:29,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:29,800 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:29,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:30,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:30,113 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:30,113 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:30,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:30,263 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:30,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:30,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:30,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:30,438 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:30,438 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:03:30,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:03:30,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:03:30,729 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:30,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:30,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:30,748 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:31,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:31,040 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:31,040 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:31,059 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:31,275 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:31,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:31,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:31,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:31,377 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:31,673 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:31,673 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:31,673 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:31,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:31,986 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:31,994 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:31,994 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:31,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:32,280 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:32,296 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:32,296 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:32,296 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:32,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:32,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:32,607 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:32,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:32,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:32,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:32,915 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:32,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:32,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:32,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:33,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:33,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:33,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:33,234 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:33,281 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:33,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:33,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:33,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:33,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:33,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:33,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:33,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:33,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:34,157 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:34,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:34,158 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:34,171 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:34,288 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:34,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:34,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:34,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:34,474 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:34,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:34,765 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:34,765 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:34,784 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:35,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:35,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:35,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:35,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:35,292 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:35,402 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:35,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:35,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:35,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:35,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:35,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:35,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:35,731 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:36,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:36,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:36,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:36,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:36,304 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:36,337 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:36,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:36,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:36,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:36,662 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:36,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:36,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:36,687 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:36,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:36,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:36,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:37,014 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:37,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:37,310 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:37,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:37,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:37,336 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:37,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:37,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:37,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:37,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:37,658 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:37,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:37,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:37,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:38,002 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:38,314 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:38,350 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:38,350 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:38,350 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:38,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:38,680 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:38,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:38,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:38,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:39,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:39,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:39,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:39,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:39,321 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:39,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:39,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:39,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:39,466 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:39,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:39,813 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:39,813 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:39,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:40,274 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:40,274 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:40,275 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:40,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:40,326 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:40,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:40,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:40,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:40,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:41,164 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:41,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:41,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:41,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:41,331 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:41,600 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:41,600 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:41,600 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:41,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:41,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:41,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:41,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:41,962 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:42,248 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:42,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:42,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:42,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:42,333 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:42,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:42,593 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:42,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:42,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:42,612 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:42,867 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:42,868 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:42,868 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:42,891 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:42,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:42,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:42,924 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:42,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:43,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:43,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:43,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:43,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:43,336 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:43,469 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:43,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:43,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:43,491 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:43,781 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:43,781 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:43,782 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:43,803 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:44,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:44,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:44,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:44,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:44,356 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:44,402 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:44,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:44,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:44,447 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:44,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:44,727 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:44,728 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:44,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:45,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:45,041 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:45,041 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:45,057 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:45,350 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:45,350 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:45,350 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:45,358 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:45,360 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:45,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:03:45,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:03:45,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:45,673 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:45,673 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:45,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:45,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:45,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:45,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:45,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:46,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:46,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:46,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:46,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:46,359 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:46,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:46,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:46,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:46,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:46,898 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:46,898 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:46,898 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:46,917 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:47,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:47,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:47,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:47,231 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:47,364 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:47,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:47,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:47,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:47,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:47,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:47,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:47,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:47,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:47,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:48,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:48,145 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:48,145 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:48,164 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:48,383 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:48,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:48,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:48,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:48,471 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:48,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:48,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:48,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:48,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:49,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:49,081 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:49,081 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:49,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:49,394 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:49,394 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:49,395 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:49,395 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:49,407 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:49,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:49,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:49,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:49,717 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:50,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:50,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:50,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:50,024 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:50,325 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:50,325 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:50,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:50,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:50,385 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:50,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:50,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:50,638 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:50,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:50,951 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:50,951 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:50,952 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:50,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:51,254 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:51,254 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:51,254 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:51,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:51,391 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:51,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:51,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:51,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:51,584 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:51,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:51,882 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:51,882 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:51,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:52,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:52,190 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:52,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:52,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:52,409 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:52,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:52,489 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:52,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:52,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:52,804 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:52,804 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:52,804 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:52,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:53,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:53,113 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:53,113 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:53,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:53,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:53,422 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:53,422 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:53,422 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:53,423 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:53,434 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:53,733 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:53,734 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:53,734 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:53,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:54,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:54,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:54,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:54,050 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:54,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:54,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:54,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:54,360 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:54,423 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:54,661 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:54,662 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:54,662 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:54,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:54,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:54,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:54,973 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:54,993 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:55,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:55,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:55,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:55,303 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:55,428 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:55,597 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:55,597 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:55,598 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:55,617 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:55,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:55,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:55,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:55,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:56,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:56,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:56,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:56,236 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:56,444 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:56,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:56,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:56,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:56,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:56,837 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:56,837 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:56,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:56,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:57,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:57,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:57,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:57,173 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:57,454 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:57,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:57,473 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:57,473 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:57,484 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:57,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:57,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:57,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:57,790 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:58,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:58,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:58,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:58,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:58,424 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:58,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:58,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:58,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:03:58,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:58,455 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:58,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:58,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:58,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:58,788 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:59,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:59,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:59,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:59,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:59,414 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:59,415 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:59,415 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:59,440 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:03:59,461 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:03:59,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:03:59,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:03:59,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:03:59,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:00,166 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:00,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:00,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:00,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:00,427 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:04:00,473 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:00,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:04:00,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:04:00,573 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:00,667 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:00,667 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:00,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:00,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:00,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:00,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:00,984 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:01,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:01,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:01,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:01,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:01,477 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:01,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:01,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:01,804 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:01,843 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:02,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:02,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:02,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:02,305 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:02,485 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:02,698 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:02,698 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:02,698 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:02,738 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:03,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:03,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:03,158 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:03,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:03,492 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:03,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:03,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:03,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:03,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:03,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:03,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:03,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:03,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:03,963 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:04,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:04,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:04,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:04,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:04,504 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:04,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:04,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:04,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:04,569 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:04,865 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:04,865 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:04,865 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:04,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:05,172 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:05,172 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:05,172 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:05,186 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:05,490 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:05,491 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:05,491 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:05,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:05,504 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:05,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:05,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:05,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:05,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:06,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:06,102 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:06,102 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:06,121 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:06,415 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:06,415 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:06,415 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:06,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:06,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:06,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:06,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:06,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:06,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:07,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:07,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:07,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:07,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:07,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:07,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:07,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:07,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:07,518 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:07,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:07,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:07,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:07,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:07,981 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:07,981 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:07,981 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:07,994 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:08,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:08,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:08,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:08,306 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:08,529 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:08,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:08,602 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:08,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:08,613 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:08,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:08,913 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:08,913 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:08,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:08,925 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:09,229 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:09,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:09,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:09,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:09,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:09,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:09,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:09,539 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:09,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:09,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:09,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:09,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:09,874 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:10,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:10,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:10,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:10,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:10,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:10,473 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:10,473 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:10,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:10,540 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:10,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:10,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:10,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:10,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:11,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:11,109 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:11,109 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:11,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:11,422 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:11,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:11,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:11,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:11,546 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:11,748 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:11,748 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:11,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:11,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:12,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:12,057 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:12,057 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:12,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:12,357 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:12,357 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:12,357 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:12,377 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:12,553 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:12,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:12,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:12,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:12,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:12,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:12,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:12,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:12,993 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:13,298 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:13,298 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:13,298 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:13,309 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:13,565 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:13,609 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:13,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:13,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:13,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:13,921 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:13,922 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:13,922 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:13,922 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:13,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:14,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:14,237 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:14,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:14,248 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:14,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:14,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:14,546 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:14,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:14,565 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:14,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:14,846 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:14,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:14,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:15,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:15,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:15,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:15,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:15,480 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:15,480 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:15,480 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:15,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:15,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:04:15,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:04:15,572 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:15,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:15,799 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:15,799 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:15,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:16,110 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:16,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:16,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:16,125 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:16,422 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:16,422 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:16,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:16,434 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:16,573 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:16,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:16,737 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:16,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:16,757 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:17,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:17,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:17,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:17,062 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:17,358 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:17,358 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:17,359 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:17,370 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:17,580 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:17,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:17,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:17,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:17,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:17,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:17,988 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:17,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:18,000 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:18,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:18,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:18,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:18,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:18,592 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:18,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:18,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:18,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:18,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:18,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:18,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:18,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:18,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:18,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:19,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:19,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:19,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:19,256 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:19,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:19,547 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:19,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:19,568 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:19,592 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:19,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:19,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:19,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:19,870 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:20,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:20,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:20,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:20,217 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:20,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:20,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:20,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:20,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:20,594 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:20,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:20,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:20,889 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:20,919 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:21,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:21,246 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:21,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:21,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:21,610 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:21,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:21,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:21,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:21,639 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:21,978 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:22,003 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:22,003 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:22,021 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:22,360 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:22,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:22,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:22,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:22,609 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:22,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:22,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:22,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:22,776 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:23,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:23,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:23,078 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:23,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:23,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:23,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:23,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:23,432 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:23,613 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:23,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:23,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:23,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:23,784 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:24,059 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:24,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:24,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:24,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:24,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:24,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:24,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:24,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:24,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:24,618 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:24,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:24,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:24,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:24,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:25,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:25,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:25,356 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:25,398 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:25,623 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:25,772 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:25,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:25,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:25,823 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:26,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:26,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:26,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:26,259 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:26,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:26,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:26,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:26,601 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:26,623 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:26,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:26,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:26,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:26,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:27,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:27,187 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:27,187 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:27,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:27,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:27,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:27,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:27,527 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:27,628 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:27,805 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:27,806 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:27,806 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:27,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:28,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:28,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:28,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:28,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:28,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:28,425 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:28,425 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:28,438 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:28,636 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:28,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:28,733 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:28,733 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:28,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:29,043 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:29,043 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:29,044 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:29,056 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:29,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:29,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:29,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:29,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:29,370 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:29,648 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:29,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:29,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:29,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:29,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:29,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:29,973 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:29,973 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:29,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:30,280 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:30,280 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:30,280 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:30,294 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:30,428 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:04:30,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:04:30,528 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:04:30,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:30,648 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:30,662 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:30,662 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:30,666 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:30,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:30,904 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:30,904 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:30,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:31,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:31,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:31,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:31,225 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:31,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:31,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:31,528 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:31,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:31,652 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:31,837 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:31,837 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:31,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:31,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:32,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:32,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:32,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:32,160 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:32,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:32,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:32,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:32,474 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:32,659 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:32,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:32,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:32,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:32,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:33,086 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:33,086 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:33,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:33,097 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:33,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:33,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:33,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:33,408 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:33,671 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:33,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:33,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:33,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:33,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:34,016 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:34,017 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:34,017 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:34,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:34,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:34,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:34,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:34,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:34,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:34,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:34,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:34,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:34,646 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:34,671 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:34,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:34,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:34,949 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:34,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:35,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:35,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:35,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:35,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:35,566 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:35,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:35,568 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:35,579 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:35,676 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:35,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:35,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:35,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:35,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:36,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:36,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:36,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:36,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:36,486 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:36,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:36,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:36,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:36,681 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:36,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:36,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:36,795 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:36,805 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:37,095 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:37,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:37,095 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:37,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:37,417 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:37,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:37,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:37,429 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:37,697 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:37,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:37,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:37,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:37,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:38,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:38,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:38,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:38,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:38,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:38,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:38,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:38,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:38,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:38,655 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:38,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:38,675 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:38,697 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:38,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:38,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:38,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:38,981 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:39,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:39,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:39,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:39,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:39,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:39,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:39,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:39,603 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:39,702 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:39,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:39,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:39,889 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:39,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:39,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:40,195 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:40,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:40,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:40,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:40,515 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:40,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:40,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:40,535 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:40,707 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:40,835 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:40,836 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:40,836 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:40,853 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:41,137 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:41,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:41,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:41,163 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:41,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:41,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:41,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:41,469 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:41,715 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:41,854 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:41,855 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:41,855 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:41,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:42,170 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:42,171 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:42,171 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:42,187 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:42,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:42,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:42,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:42,488 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:42,726 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:42,789 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:42,789 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:42,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:42,801 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:43,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:43,121 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:43,121 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:43,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:43,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:43,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:43,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:43,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:43,738 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:43,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:43,793 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:43,793 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:43,823 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:44,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:44,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:44,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:44,157 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:44,458 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:44,458 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:44,458 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:44,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:44,750 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:44,789 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:44,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:44,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:44,818 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:45,115 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:45,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:45,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:45,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:45,146 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:45,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:45,448 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:45,448 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:45,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:45,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:04:45,528 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:04:45,762 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:45,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:45,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:45,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:45,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:46,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:46,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:46,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:46,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:46,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:46,655 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:46,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:46,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:46,773 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:47,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:47,076 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:47,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:47,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:47,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:47,461 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:47,461 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:47,485 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:47,766 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:47,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:47,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:47,784 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:47,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:48,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:48,083 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:48,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:48,095 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:48,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:48,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:48,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:48,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:48,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:48,701 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:48,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:48,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:48,789 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:49,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:49,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:49,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:49,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:49,324 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:49,325 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:49,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:49,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:49,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:49,636 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:49,636 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:49,649 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:49,796 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:49,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:49,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:49,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:49,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:50,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:50,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:50,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:50,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:50,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:50,576 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:50,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:50,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:50,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:50,810 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:50,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:50,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:50,889 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:50,901 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:51,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:51,202 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:51,202 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:51,214 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:51,513 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:51,513 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:51,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:51,525 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:51,815 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:51,815 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:51,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:51,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:51,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:52,129 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:52,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:52,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:52,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:52,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:52,450 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:52,450 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:52,465 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:52,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:52,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:52,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:52,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:52,815 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:53,067 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:53,067 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:53,067 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:53,079 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:53,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:53,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:53,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:53,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:53,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:53,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:53,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:53,707 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:53,825 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:53,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:53,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:53,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:54,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:54,319 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:54,319 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:54,319 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:54,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:54,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:54,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:54,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:54,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:54,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:54,953 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:54,953 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:54,953 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:54,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:55,263 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:55,264 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:55,264 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:55,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:04:55,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:55,571 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:55,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:55,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:55,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:55,842 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:55,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:55,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:55,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:55,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:56,194 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:56,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:56,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:56,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:56,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:56,506 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:56,506 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:56,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:56,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:56,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:56,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:56,843 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:56,860 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:57,126 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:57,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:57,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:57,159 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:57,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:57,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:57,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:57,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:57,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:57,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:57,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:57,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:57,846 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:58,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:58,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:58,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:58,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:58,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:58,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:58,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:58,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:58,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:58,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:58,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:58,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:58,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:59,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:59,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:59,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:59,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:59,322 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:59,322 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:59,322 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:59,340 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:59,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:59,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:59,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:59,654 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:04:59,867 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:04:59,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:04:59,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:04:59,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:04:59,967 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:00,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:00,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:00,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:00,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:00,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:00,431 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:05:00,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:05:00,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:05:00,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:00,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:00,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:00,687 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:00,879 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:00,920 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:00,921 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:00,921 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:00,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:01,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:01,232 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:01,232 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:01,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:01,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:01,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:01,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:01,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:01,861 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:01,861 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:01,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:01,872 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:01,879 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:02,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:02,181 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:02,181 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:02,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:02,486 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:02,486 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:02,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:02,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:02,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:02,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:02,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:02,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:02,880 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:03,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:03,119 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:03,119 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:03,130 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:03,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:03,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:03,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:03,443 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:03,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:03,744 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:03,744 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:03,756 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:03,887 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:04,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:04,057 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:04,057 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:04,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:04,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:04,371 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:04,371 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:04,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:04,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:04,679 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:04,679 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:04,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:04,900 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:04,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:04,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:04,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:05,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:05,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:05,305 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:05,305 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:05,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:05,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:05,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:05,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:05,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:05,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:05,912 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:05,961 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:05,961 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:05,961 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:05,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:06,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:06,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:06,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:06,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:06,632 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:06,632 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:06,632 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:06,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:06,924 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:06,969 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:06,969 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:06,969 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:06,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:07,301 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:07,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:07,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:07,332 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:07,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:07,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:07,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:07,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:07,936 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:07,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:07,991 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:07,991 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:08,015 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:08,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:08,425 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:08,425 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:08,456 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:08,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:08,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:08,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:08,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:08,946 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:09,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:09,092 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:09,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:09,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:09,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:09,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:09,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:09,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:09,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:09,813 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:09,813 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:09,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:09,950 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:10,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:10,122 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:10,122 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:10,133 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:10,435 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:10,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:10,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:10,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:10,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:10,734 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:10,734 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:10,734 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:10,753 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:10,969 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:11,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:11,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:11,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:11,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:11,358 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:11,358 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:11,358 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:11,377 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:11,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:11,679 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:11,679 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:11,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:11,990 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:12,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:12,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:12,078 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:12,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:12,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:12,393 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:12,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:12,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:12,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:12,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:12,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:12,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:13,002 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:13,018 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:13,018 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:13,018 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:13,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:13,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:13,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:13,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:13,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:13,635 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:13,636 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:13,636 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:13,659 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:13,953 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:13,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:13,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:13,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:14,002 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:14,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:14,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:14,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:14,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:14,576 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:14,576 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:14,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:14,598 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:14,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:14,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:14,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:14,911 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:15,010 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:15,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:15,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:15,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:15,232 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:15,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:15,521 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:15,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:15,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:15,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:05:15,549 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:15,549 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:05:15,826 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:15,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:15,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:15,847 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:16,019 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:16,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:16,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:16,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:16,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:16,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:16,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:16,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:16,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:16,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:16,761 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:16,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:16,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:17,031 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:17,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:17,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:17,075 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:17,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:17,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:17,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:17,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:17,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:17,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:17,701 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:17,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:17,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:18,008 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:18,008 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:18,008 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:18,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:18,031 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:18,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:18,318 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:18,318 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:18,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:18,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:18,620 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:18,620 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:18,639 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:18,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:18,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:18,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:18,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:19,036 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:19,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:19,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:19,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:19,264 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:19,566 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:19,566 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:19,566 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:19,577 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:19,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:19,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:19,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:19,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:20,042 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:20,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:20,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:20,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:20,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:20,494 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:20,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:20,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:20,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:20,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:20,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:20,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:20,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:20,810 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:21,057 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:21,110 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:21,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:21,111 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:21,121 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:21,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:21,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:21,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:21,432 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:21,733 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:21,734 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:21,734 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:21,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:22,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:22,043 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:22,043 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:22,054 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:22,057 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:22,357 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:22,357 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:22,357 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:22,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:22,670 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:22,671 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:22,671 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:22,682 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:22,981 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:22,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:22,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:22,993 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:23,058 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:23,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:23,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:23,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:23,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:23,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:23,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:23,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:23,614 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:23,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:23,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:23,912 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:23,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:24,063 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:24,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:24,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:24,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:24,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:24,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:24,518 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:24,518 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:24,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:24,840 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:24,840 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:24,840 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:24,851 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:25,082 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:25,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:25,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:25,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:25,166 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:25,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:25,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:25,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:25,476 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:25,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:25,764 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:25,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:25,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:26,094 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:26,094 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:26,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:26,095 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:26,095 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:26,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:26,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:26,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:26,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:26,427 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:26,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:26,787 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:26,787 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:26,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:27,105 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:27,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:27,170 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:27,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:27,204 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:27,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:27,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:27,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:27,579 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:27,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:27,902 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:27,902 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:27,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:28,110 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:28,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:28,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:28,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:28,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:28,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:28,646 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:28,646 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:28,688 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:29,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:29,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:29,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:29,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:29,112 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:29,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:29,433 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:29,433 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:29,471 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:29,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:29,850 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:29,850 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:29,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:30,121 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:30,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:30,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:30,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:30,271 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:30,432 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:05:30,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:05:30,554 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:05:30,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:30,696 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:30,696 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:30,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:31,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:31,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:31,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:31,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:31,127 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:31,458 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:31,459 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:31,459 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:31,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:31,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:31,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:31,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:31,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:31,847 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:32,140 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:32,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:32,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:32,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:32,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:32,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:32,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:32,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:32,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:33,152 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:33,164 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:33,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:33,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:33,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:33,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:33,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:33,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:33,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:34,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:34,093 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:34,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:34,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:34,152 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:34,395 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:34,395 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:34,395 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:34,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:34,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:34,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:34,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:34,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:35,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:35,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:35,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:35,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:35,158 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:35,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:35,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:35,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:35,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:35,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:35,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:35,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:35,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:36,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:36,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:36,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:36,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:36,164 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:36,370 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:36,370 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:36,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:36,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:36,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:36,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:36,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:36,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:36,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:36,994 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:36,995 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:36,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:37,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:37,170 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:37,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:37,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:37,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:37,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:37,607 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:37,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:37,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:37,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:37,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:37,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:37,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:37,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:38,204 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:38,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:38,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:38,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:38,241 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:38,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:38,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:38,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:38,546 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:38,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:38,846 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:38,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:38,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:39,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:39,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:39,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:39,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:39,204 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:39,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:39,466 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:39,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:39,478 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:39,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:39,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:39,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:39,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:40,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:40,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:40,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:40,105 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:40,209 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:40,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:40,393 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:40,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:40,412 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:40,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:40,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:40,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:40,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:41,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:41,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:41,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:41,040 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:41,215 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:41,340 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:41,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:41,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:41,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:41,653 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:41,654 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:41,654 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:41,665 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:41,966 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:41,967 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:41,967 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:41,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:42,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:42,220 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:42,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:42,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:42,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:42,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:42,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:42,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:42,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:42,637 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:42,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:42,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:42,931 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:42,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:43,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:43,235 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:43,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:43,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:43,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:43,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:43,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:43,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:43,566 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:43,858 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:43,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:43,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:43,882 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:44,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:44,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:44,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:44,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:44,235 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:44,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:44,491 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:44,491 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:44,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:44,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:44,811 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:44,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:44,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:45,126 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:45,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:45,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:45,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:45,242 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:45,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:45,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:45,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:45,455 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:45,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:05:45,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:05:45,751 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:45,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:45,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:45,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:46,053 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:46,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:46,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:46,072 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:46,249 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:46,367 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:46,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:46,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:46,386 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:46,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:46,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:46,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:46,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:46,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:46,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:46,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:46,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:47,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:47,263 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:47,299 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:47,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:47,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:47,319 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:47,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:47,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:47,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:47,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:47,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:47,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:47,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:47,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:48,248 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:48,249 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:48,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:48,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:48,263 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:48,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:48,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:48,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:48,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:48,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:48,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:48,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:48,881 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:49,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:49,181 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:49,181 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:49,193 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:49,268 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:49,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:49,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:49,490 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:49,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:49,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:49,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:49,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:49,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:50,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:50,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:50,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:50,137 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:50,274 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:50,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:50,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:50,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:50,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:50,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:50,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:50,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:50,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:51,170 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:51,170 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:51,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:51,238 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:51,278 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:51,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:51,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:51,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:51,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:51,899 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:51,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:51,900 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:51,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:52,290 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:52,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:52,318 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:52,318 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:52,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:52,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:52,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:52,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:52,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:52,759 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:53,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:53,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:53,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:53,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:53,296 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:53,539 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:53,540 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:53,540 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:53,566 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:53,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:53,929 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:53,929 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:53,963 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:54,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:54,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:54,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:54,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:54,297 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:54,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:54,581 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:54,581 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:54,607 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:54,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:54,931 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:54,931 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:54,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:55,308 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:55,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:55,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:55,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:55,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:55,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:55,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:55,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:55,761 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:56,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:56,121 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:56,121 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:56,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:56,313 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:56,430 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:56,430 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:56,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:56,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:56,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:56,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:56,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:56,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:57,048 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:57,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:57,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:57,059 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:57,325 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:57,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:57,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:57,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:57,356 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:05:57,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:57,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:57,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:57,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:57,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:57,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:57,973 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:57,973 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:57,991 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:58,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:58,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:58,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:58,303 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:58,325 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:58,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:58,602 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:58,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:58,621 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:58,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:58,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:58,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:58,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:59,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:59,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:59,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:59,257 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:59,329 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:05:59,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:59,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:59,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:59,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:05:59,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:05:59,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:05:59,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:05:59,872 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:00,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:00,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:00,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:00,193 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:00,335 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:00,437 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:06:00,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:00,491 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:00,491 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:00,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:00,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:06:00,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:06:00,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:00,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:00,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:00,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:01,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:01,121 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:01,121 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:01,133 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:01,354 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:01,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:01,444 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:01,444 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:01,457 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:01,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:01,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:01,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:01,772 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:02,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:02,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:02,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:02,081 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:02,359 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:02,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:02,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:02,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:02,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:02,395 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:02,690 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:02,690 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:02,690 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:02,702 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:02,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:02,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:02,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:03,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:03,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:03,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:03,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:03,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:03,360 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:03,614 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:03,614 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:03,614 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:03,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:03,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:03,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:03,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:03,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:04,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:04,249 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:04,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:04,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:04,365 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:04,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:04,554 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:04,554 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:04,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:04,864 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:04,864 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:04,864 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:04,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:05,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:05,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:05,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:05,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:05,372 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:05,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:05,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:05,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:05,506 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:05,806 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:05,806 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:05,806 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:05,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:06,115 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:06,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:06,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:06,134 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:06,383 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:06,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:06,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:06,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:06,445 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:06,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:06,745 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:06,745 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:06,756 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:07,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:07,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:07,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:07,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:07,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:07,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:07,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:07,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:07,383 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:07,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:07,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:07,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:07,673 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:07,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:07,992 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:07,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:07,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:08,004 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:08,304 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:08,304 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:08,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:08,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:08,389 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:08,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:08,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:08,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:08,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:08,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:08,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:08,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:08,926 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:09,227 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:09,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:09,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:09,238 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:09,394 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:09,540 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:09,541 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:09,541 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:09,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:09,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:09,851 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:09,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:09,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:10,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:10,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:10,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:10,184 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:10,413 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:10,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:10,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:10,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:10,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:10,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:10,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:10,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:10,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:11,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:11,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:11,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:11,130 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:11,420 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:11,420 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:11,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:11,428 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:11,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:11,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:11,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:11,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:11,744 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:12,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:12,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:12,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:12,055 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:12,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:12,440 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:12,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:12,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:12,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:12,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:12,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:12,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:12,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:12,791 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:13,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:13,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:13,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:13,101 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:13,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:13,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:13,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:13,447 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:13,495 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:13,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:13,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:13,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:13,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:14,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:14,152 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:14,152 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:14,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:14,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:14,506 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:14,507 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:14,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:14,569 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:14,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:14,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:14,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:14,937 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:15,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:15,282 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:15,282 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:15,338 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:15,512 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:15,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:06:15,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:06:15,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:15,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:15,706 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:15,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:16,115 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:16,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:16,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:16,171 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:16,524 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:16,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:16,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:16,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:16,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:16,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:16,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:16,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:16,991 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:17,333 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:17,333 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:17,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:17,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:17,536 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:17,748 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:17,748 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:17,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:17,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:17,778 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:18,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:18,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:18,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:18,219 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:18,548 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:18,567 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:18,567 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:18,567 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:18,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:18,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:18,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:18,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:18,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:19,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:19,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:19,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:19,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:19,508 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:19,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:19,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:19,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:19,548 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:19,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:19,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:19,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:19,826 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:20,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:20,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:20,128 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:20,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:20,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:20,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:20,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:20,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:20,554 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:20,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:20,737 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:20,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:20,756 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:21,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:21,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:21,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:21,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:21,368 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:21,368 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:21,368 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:21,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:21,557 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:21,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:21,676 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:21,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:21,687 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:21,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:21,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:21,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:21,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:22,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:22,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:22,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:22,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:22,578 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:22,607 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:22,607 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:22,607 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:22,618 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:22,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:22,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:22,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:22,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:22,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:23,229 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:23,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:23,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:23,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:23,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:23,536 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:23,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:23,549 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:23,578 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:23,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:23,851 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:23,851 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:23,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:24,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:24,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:24,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:24,170 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:24,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:24,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:24,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:24,484 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:24,586 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:24,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:24,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:24,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:24,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:25,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:25,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:25,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:25,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:25,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:25,408 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:25,408 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:25,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:25,593 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:25,719 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:25,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:25,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:25,731 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:26,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:26,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:26,035 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:26,054 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:26,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:26,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:26,332 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:26,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:26,605 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:26,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:26,655 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:26,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:26,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:26,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:26,967 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:26,967 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:26,979 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:27,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:27,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:27,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:27,303 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:27,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:27,593 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:27,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:27,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:27,607 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:27,905 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:27,905 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:27,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:27,919 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:28,206 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:28,206 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:28,206 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:28,207 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:28,226 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:28,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:28,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:28,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:28,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:28,611 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:28,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:28,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:28,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:28,844 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:29,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:29,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:29,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:29,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:29,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:29,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:29,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:29,467 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:29,618 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:29,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:29,764 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:29,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:29,775 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:30,074 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:30,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:30,075 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:30,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:30,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:30,380 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:30,380 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:30,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:30,438 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:06:30,558 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:06:30,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:06:30,639 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:30,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:30,714 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:30,715 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:30,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:31,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:31,015 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:31,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:31,040 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:31,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:31,332 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:31,332 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:31,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:31,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:31,644 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:31,644 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:31,652 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:31,666 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:31,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:31,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:31,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:31,974 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:32,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:32,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:32,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:32,280 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:32,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:32,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:32,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:32,608 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:32,652 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:32,883 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:32,883 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:32,883 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:32,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:33,204 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:33,204 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:33,205 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:33,216 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:33,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:33,514 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:33,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:33,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:33,526 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:33,657 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:33,818 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:33,818 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:33,818 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:33,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:34,129 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:34,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:34,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:34,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:34,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:34,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:34,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:34,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:34,668 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:34,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:34,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:34,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:34,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:35,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:35,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:35,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:35,104 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:35,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:35,393 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:35,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:35,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:35,680 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:35,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:35,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:35,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:35,748 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:36,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:36,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:36,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:36,075 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:36,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:36,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:36,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:36,403 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:36,692 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:36,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:36,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:36,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:36,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:37,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:37,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:37,042 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:37,072 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:37,374 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:37,375 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:37,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:37,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:37,703 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:37,704 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:37,704 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:37,704 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:37,731 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:38,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:38,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:38,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:38,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:38,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:38,521 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:38,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:38,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:38,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:38,713 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:38,899 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:38,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:38,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:38,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:39,296 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:39,296 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:39,296 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:39,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:39,606 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:39,606 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:39,607 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:39,617 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:39,720 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:39,910 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:39,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:39,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:39,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:40,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:40,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:40,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:40,239 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:40,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:40,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:40,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:40,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:40,725 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:40,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:40,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:40,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:40,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:41,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:41,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:41,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:41,171 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:41,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:41,473 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:41,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:41,484 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:41,736 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:41,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:41,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:41,787 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:41,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:42,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:42,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:42,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:42,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:42,430 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:42,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:42,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:42,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:42,748 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:42,768 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:42,769 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:42,769 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:42,781 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:43,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:43,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:43,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:43,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:43,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:43,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:43,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:43,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:43,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:43,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:43,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:43,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:43,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:43,748 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:44,023 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:44,023 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:44,024 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:44,056 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:44,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:44,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:44,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:44,369 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:44,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:44,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:44,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:44,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:44,765 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:45,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:45,047 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:45,047 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:45,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:45,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:45,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:45,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:45,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:45,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:06:45,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:06:45,726 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:45,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:45,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:45,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:45,770 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:46,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:46,052 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:46,052 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:46,075 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:46,346 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:46,346 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:46,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:46,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:46,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:46,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:46,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:46,712 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:46,776 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:46,986 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:46,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:46,987 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:47,016 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:47,298 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:47,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:47,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:47,326 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:47,607 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:47,607 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:47,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:47,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:47,783 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:47,920 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:47,921 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:47,921 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:47,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:48,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:48,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:48,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:48,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:48,541 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:48,541 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:48,541 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:48,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:48,801 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:48,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:48,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:48,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:48,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:48,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:49,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:49,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:49,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:49,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:49,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:49,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:49,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:49,488 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:49,787 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:49,787 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:49,787 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:49,799 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:49,801 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:50,101 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:50,102 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:50,102 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:50,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:50,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:50,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:50,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:50,423 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:50,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:50,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:50,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:50,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:50,809 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:51,035 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:51,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:51,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:51,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:51,348 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:51,348 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:51,348 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:51,359 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:51,658 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:51,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:51,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:51,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:51,814 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:51,960 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:51,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:51,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:51,979 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:52,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:52,266 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:52,266 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:52,286 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:52,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:52,588 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:52,588 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:52,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:52,836 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:52,892 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:52,892 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:52,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:52,911 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:53,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:53,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:53,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:53,218 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:53,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:53,520 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:53,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:53,530 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:53,828 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:53,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:53,828 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:53,836 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:53,838 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:54,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:54,133 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:54,133 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:54,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:54,152 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:54,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:54,452 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:54,452 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:54,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:54,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:54,754 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:54,754 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:54,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:54,837 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:55,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:55,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:55,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:55,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:55,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:55,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:55,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:55,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:55,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:55,698 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:55,698 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:55,727 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:55,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:56,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:56,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:56,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:56,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:56,342 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:56,342 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:56,342 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:56,371 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:56,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:56,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:56,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:56,712 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:56,846 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:57,007 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:57,007 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:57,008 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:57,034 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:57,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:57,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:57,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:57,375 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:57,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:57,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:57,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:57,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:57,849 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:57,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:57,991 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:57,991 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:58,021 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:58,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:58,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:58,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:58,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:58,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:58,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:58,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:58,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:58,855 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:59,041 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:59,041 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:59,041 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:59,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:59,460 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:59,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:59,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:59,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:06:59,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:06:59,861 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:06:59,934 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:06:59,934 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:06:59,934 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:06:59,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:00,439 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:07:00,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:00,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:00,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:00,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:00,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:07:00,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:07:00,883 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:00,926 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:00,926 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:00,926 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:00,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:01,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:01,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:01,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:01,335 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:01,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:01,629 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:01,629 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:01,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:01,904 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:01,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:01,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:01,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:01,962 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:02,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:02,286 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:02,286 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:02,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:02,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:02,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:02,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:02,629 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:02,916 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:02,934 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:02,934 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:02,934 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:02,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:03,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:03,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:03,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:03,298 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:03,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:03,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:03,624 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:03,650 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:03,934 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:03,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:03,998 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:03,998 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:04,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:04,370 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:04,370 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:04,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:04,399 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:04,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:04,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:04,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:04,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:04,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:04,941 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:05,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:05,057 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:05,057 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:05,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:05,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:05,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:05,369 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:05,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:05,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:05,679 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:05,679 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:05,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:05,947 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:05,992 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:05,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:05,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:06,004 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:06,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:06,307 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:06,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:06,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:06,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:06,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:06,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:06,637 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:06,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:06,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:06,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:06,950 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:06,952 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:07,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:07,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:07,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:07,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:07,560 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:07,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:07,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:07,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:07,871 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:07,872 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:07,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:07,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:07,958 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:08,187 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:08,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:08,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:08,199 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:08,500 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:08,500 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:08,500 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:08,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:08,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:08,808 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:08,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:08,819 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:08,962 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:09,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:09,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:09,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:09,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:09,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:09,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:09,413 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:09,432 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:09,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:09,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:09,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:09,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:09,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:09,973 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:10,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:10,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:10,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:10,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:10,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:10,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:10,352 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:10,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:10,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:10,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:10,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:10,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:10,973 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:10,973 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:10,973 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:10,981 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:10,985 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:11,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:11,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:11,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:11,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:11,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:11,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:11,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:11,603 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:11,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:11,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:11,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:11,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:11,986 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:12,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:12,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:12,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:12,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:12,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:12,518 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:12,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:12,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:12,923 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:12,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:12,924 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:12,936 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:12,986 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:13,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:13,238 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:13,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:13,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:13,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:13,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:13,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:13,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:13,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:13,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:13,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:13,870 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:13,992 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:14,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:14,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:14,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:14,182 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:14,477 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:14,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:14,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:14,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:14,787 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:14,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:14,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:14,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:14,799 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:15,003 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:15,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:15,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:15,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:15,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:15,412 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:15,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:15,413 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:15,424 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:15,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:07:15,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:07:15,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:15,723 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:15,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:15,734 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:16,009 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:16,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:16,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:16,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:16,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:16,350 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:16,350 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:16,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:16,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:16,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:16,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:16,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:16,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:16,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:16,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:16,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:16,993 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:17,010 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:17,283 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:17,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:17,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:17,303 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:17,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:17,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:17,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:17,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:17,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:17,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:17,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:17,975 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:18,011 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:18,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:18,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:18,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:18,334 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:18,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:18,655 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:18,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:18,683 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:19,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:19,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:19,014 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:19,022 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:19,041 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:19,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:19,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:19,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:19,377 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:19,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:19,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:19,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:19,734 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:20,035 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:20,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:20,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:20,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:20,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:20,185 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:20,607 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:20,607 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:20,607 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:20,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:21,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:21,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:21,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:21,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:21,046 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:21,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:21,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:21,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:21,492 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:21,894 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:21,894 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:21,894 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:21,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:22,051 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:22,270 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:22,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:22,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:22,296 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:22,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:22,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:22,670 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:22,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:23,063 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:23,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:23,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:23,106 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:23,156 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:23,553 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:23,554 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:23,554 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:23,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:23,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:23,930 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:23,931 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:23,976 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:24,070 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:24,337 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:24,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:24,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:24,384 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:24,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:24,749 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:24,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:24,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:25,077 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:25,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:25,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:25,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:25,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:25,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:25,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:25,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:25,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:25,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:25,835 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:25,835 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:25,836 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:25,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:26,094 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:26,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:26,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:26,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:26,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:26,452 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:26,452 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:26,452 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:26,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:26,760 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:26,761 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:26,761 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:26,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:27,063 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:27,063 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:27,063 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:27,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:27,094 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:27,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:27,375 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:27,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:27,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:27,692 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:27,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:27,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:27,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:28,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:28,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:28,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:28,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:28,099 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:28,315 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:28,315 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:28,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:28,326 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:28,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:28,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:28,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:28,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:28,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:28,935 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:28,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:28,948 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:29,105 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:29,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:29,246 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:29,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:29,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:29,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:29,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:29,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:29,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:29,862 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:29,862 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:29,862 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:29,874 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:30,123 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:30,175 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:30,175 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:30,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:30,187 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:30,440 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:07:30,441 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:30,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:30,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:30,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:30,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:30,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:07:30,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:07:30,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:30,801 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:30,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:30,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:31,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:31,109 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:31,109 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:31,120 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:31,123 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:31,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:31,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:31,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:31,424 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:31,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:31,728 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:31,728 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:31,739 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:32,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:32,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:32,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:32,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:32,127 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:32,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:32,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:32,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:32,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:32,657 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:32,657 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:32,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:32,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:32,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:32,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:32,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:32,981 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:33,134 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:33,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:33,280 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:33,280 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:33,294 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:33,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:33,600 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:33,600 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:33,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:33,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:33,904 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:33,904 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:33,917 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:34,154 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:34,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:34,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:34,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:34,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:34,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:34,520 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:34,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:34,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:34,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:34,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:34,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:34,875 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:35,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:35,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:35,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:35,164 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:35,188 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:35,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:35,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:35,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:35,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:35,506 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:35,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:35,776 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:35,776 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:35,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:36,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:36,076 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:36,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:36,103 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:36,171 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:36,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:36,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:36,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:36,409 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:36,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:36,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:36,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:36,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:37,021 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:37,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:37,022 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:37,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:37,179 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:37,319 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:37,319 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:37,319 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:37,338 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:37,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:37,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:37,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:37,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:37,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:37,939 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:37,939 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:37,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:38,191 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:38,242 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:38,242 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:38,242 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:38,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:38,559 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:38,559 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:38,559 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:38,580 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:38,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:38,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:38,878 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:38,889 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:39,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:39,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:39,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:39,195 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:39,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:39,503 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:39,504 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:39,504 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:39,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:39,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:39,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:39,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:39,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:40,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:40,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:40,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:40,137 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:40,196 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:40,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:40,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:40,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:40,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:40,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:40,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:40,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:40,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:40,765 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:41,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:41,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:41,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:41,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:41,205 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:41,376 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:41,376 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:41,376 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:41,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:41,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:41,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:41,686 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:41,722 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:42,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:42,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:42,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:42,101 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:42,213 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:42,453 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:42,453 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:42,453 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:42,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:42,822 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:42,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:42,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:42,853 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:43,228 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:43,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:43,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:43,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:43,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:43,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:43,704 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:43,704 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:43,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:44,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:44,102 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:44,102 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:44,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:44,231 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:44,550 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:44,550 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:44,550 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:44,580 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:45,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:45,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:45,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:45,031 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:45,243 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:45,415 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:45,415 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:45,415 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:45,440 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:45,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:07:45,563 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:07:45,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:45,731 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:45,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:45,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:45,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:46,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:46,108 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:46,108 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:46,130 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:46,253 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:46,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:46,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:46,479 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:46,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:46,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:46,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:46,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:46,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:47,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:47,258 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:47,258 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:47,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:47,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:47,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:47,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:47,578 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:47,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:47,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:47,874 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:47,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:47,893 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:48,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:48,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:48,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:48,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:48,258 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:48,511 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:48,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:48,512 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:48,525 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:48,824 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:48,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:48,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:48,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:49,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:49,142 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:49,142 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:49,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:49,266 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:49,452 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:49,453 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:49,453 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:49,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:49,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:49,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:49,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:49,775 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:50,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:50,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:50,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:50,100 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:50,273 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:50,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:50,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:50,382 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:50,410 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:50,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:50,703 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:50,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:50,723 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:51,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:51,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:51,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:51,015 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:51,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:51,284 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:51,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:51,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:51,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:51,360 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:51,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:51,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:51,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:51,665 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:51,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:51,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:51,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:51,980 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:52,253 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:52,253 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:52,253 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:52,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:52,284 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:52,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:52,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:52,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:52,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:52,873 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:52,874 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:52,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:52,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:53,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:53,192 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:53,192 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:53,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:53,289 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:53,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:53,503 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:53,503 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:53,515 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:53,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:53,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:53,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:53,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:54,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:54,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:54,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:54,140 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:54,295 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:54,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:54,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:54,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:54,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:54,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:54,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:54,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:54,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:55,062 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:55,062 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:55,062 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:55,074 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:55,325 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:55,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:55,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:55,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:55,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:55,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:55,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:55,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:55,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:55,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:55,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:55,987 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:56,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:56,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:56,307 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:56,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:56,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:07:56,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:56,325 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:56,619 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:56,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:56,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:56,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:56,928 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:56,928 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:56,928 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:56,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:57,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:57,246 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:57,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:57,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:57,330 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:57,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:57,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:57,552 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:57,564 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:57,854 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:57,854 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:57,854 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:57,873 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:58,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:58,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:58,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:58,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:58,338 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:58,480 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:58,480 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:58,480 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:58,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:58,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:58,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:58,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:58,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:59,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:59,113 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:59,113 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:59,125 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:59,360 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:07:59,415 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:59,416 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:59,416 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:59,429 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:07:59,724 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:07:59,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:07:59,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:07:59,738 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:00,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:00,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:00,042 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:00,056 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:00,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:00,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:00,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:00,371 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:00,395 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:00,442 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:08:00,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:08:00,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:08:00,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:00,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:00,696 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:00,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:00,994 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:00,995 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:00,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:01,030 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:01,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:01,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:01,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:01,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:01,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:01,371 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:01,618 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:01,618 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:01,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:01,649 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:01,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:01,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:01,934 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:01,965 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:02,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:02,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:02,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:02,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:02,380 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:02,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:02,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:02,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:02,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:02,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:02,872 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:02,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:02,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:03,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:03,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:03,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:03,199 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:03,387 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:03,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:03,503 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:03,503 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:03,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:03,807 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:03,807 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:03,807 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:03,826 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:04,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:04,145 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:04,145 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:04,190 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:04,399 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:04,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:04,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:04,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:04,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:04,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:04,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:04,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:04,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:05,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:05,185 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:05,185 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:05,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:05,403 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:05,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:05,536 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:05,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:05,584 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:05,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:05,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:05,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:05,899 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:06,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:06,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:06,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:06,253 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:06,412 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:06,558 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:06,558 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:06,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:06,559 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:06,607 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:06,882 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:06,882 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:06,882 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:06,920 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:07,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:07,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:07,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:07,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:07,419 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:07,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:07,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:07,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:07,662 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:07,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:07,979 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:07,979 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:08,036 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:08,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:08,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:08,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:08,415 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:08,424 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:08,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:08,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:08,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:08,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:09,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:09,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:09,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:09,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:09,430 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:09,559 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:09,559 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:09,559 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:09,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:09,964 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:09,965 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:09,965 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:09,979 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:10,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:10,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:10,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:10,289 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:10,438 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:10,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:10,593 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:10,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:10,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:10,907 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:10,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:10,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:10,919 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:11,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:11,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:11,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:11,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:11,441 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:11,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:11,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:11,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:11,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:11,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:11,850 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:11,850 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:11,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:11,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:12,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:12,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:12,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:12,172 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:12,453 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:12,469 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:12,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:12,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:12,478 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:12,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:12,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:12,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:12,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:13,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:13,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:13,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:13,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:13,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:13,457 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:13,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:13,465 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:13,469 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:13,768 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:13,768 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:13,769 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:13,777 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:14,081 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:14,081 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:14,081 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:14,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:14,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:14,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:14,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:14,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:14,466 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:14,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:14,764 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:14,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:14,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:15,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:15,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:15,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:15,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:15,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:15,394 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:15,394 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:15,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:15,466 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:15,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:08:15,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:08:15,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:15,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:15,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:15,719 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:16,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:16,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:16,021 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:16,035 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:16,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:16,332 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:16,332 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:16,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:16,471 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:16,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:16,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:16,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:16,655 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:16,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:16,952 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:16,952 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:16,953 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:16,965 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:17,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:17,265 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:17,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:17,277 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:17,486 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:17,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:17,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:17,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:17,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:17,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:17,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:17,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:17,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:18,191 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:18,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:18,192 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:18,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:18,498 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:18,512 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:18,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:18,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:18,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:18,823 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:18,824 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:18,824 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:18,857 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:19,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:19,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:19,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:19,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:19,417 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:19,417 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:19,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:19,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:19,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:19,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:19,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:19,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:19,512 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:19,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:19,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:19,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:19,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:20,021 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:20,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:20,021 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:20,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:20,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:20,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:20,337 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:20,384 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:20,518 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:20,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:20,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:20,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:20,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:20,965 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:20,965 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:20,966 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:20,981 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:21,281 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:21,281 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:21,281 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:21,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:21,539 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:21,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:21,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:21,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:21,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:21,904 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:21,905 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:21,905 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:21,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:22,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:22,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:22,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:22,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:22,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:22,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:22,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:22,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:22,539 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:22,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:22,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:22,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:22,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:22,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:23,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:23,153 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:23,153 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:23,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:23,469 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:23,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:23,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:23,524 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:23,540 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:23,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:23,779 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:23,779 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:23,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:24,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:24,107 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:24,107 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:24,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:24,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:24,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:24,422 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:24,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:24,545 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:24,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:24,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:24,738 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:24,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:25,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:25,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:25,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:25,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:25,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:25,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:25,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:25,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:25,549 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:25,680 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:25,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:25,680 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:25,692 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:25,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:25,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:25,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:26,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:26,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:26,309 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:26,309 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:26,354 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:26,560 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:26,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:26,631 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:26,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:26,682 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:26,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:26,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:26,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:27,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:27,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:27,305 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:27,305 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:27,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:27,359 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:27,576 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:27,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:27,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:27,644 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:27,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:27,973 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:27,973 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:27,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:28,034 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:28,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:28,306 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:28,306 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:28,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:28,588 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:28,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:28,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:28,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:28,687 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:28,976 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:28,976 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:28,977 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:29,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:29,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:29,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:29,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:29,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:29,599 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:29,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:29,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:29,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:29,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:30,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:30,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:30,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:30,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:30,443 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:08:30,567 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:08:30,567 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:08:30,608 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:30,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:30,715 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:30,715 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:30,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:31,059 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:31,060 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:31,060 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:31,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:31,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:31,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:31,369 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:31,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:31,611 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:31,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:31,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:31,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:31,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:31,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:31,997 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:31,997 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:32,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:32,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:32,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:32,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:32,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:32,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:32,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:32,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:32,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:32,628 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:32,629 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:32,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:32,929 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:32,929 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:32,941 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:33,241 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:33,242 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:33,242 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:33,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:33,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:33,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:33,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:33,565 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:33,633 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:33,854 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:33,854 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:33,854 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:33,873 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:34,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:34,176 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:34,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:34,189 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:34,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:34,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:34,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:34,503 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:34,639 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:34,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:34,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:34,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:34,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:35,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:35,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:35,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:35,122 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:35,422 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:35,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:35,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:35,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:35,651 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:35,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:35,737 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:35,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:35,775 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:36,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:36,048 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:36,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:36,090 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:36,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:36,365 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:36,365 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:36,408 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:36,659 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:36,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:36,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:36,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:36,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:37,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:37,015 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:37,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:37,080 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:37,334 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:37,334 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:37,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:37,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:37,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:37,671 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:37,671 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:37,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:37,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:37,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:38,016 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:38,017 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:38,017 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:38,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:38,358 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:38,359 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:38,359 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:38,433 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:38,693 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:38,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:38,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:38,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:38,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:39,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:39,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:39,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:39,109 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:39,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:39,391 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:39,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:39,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:39,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:39,701 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:39,701 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:39,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:39,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:40,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:40,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:40,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:40,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:40,339 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:40,340 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:40,340 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:40,361 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:40,652 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:40,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:40,653 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:40,665 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:40,701 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:40,969 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:40,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:40,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:40,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:41,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:41,266 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:41,266 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:41,285 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:41,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:41,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:41,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:41,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:41,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:41,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:41,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:41,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:41,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:42,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:42,204 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:42,204 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:42,216 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:42,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:42,504 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:42,504 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:42,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:42,523 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:42,711 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:42,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:42,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:42,812 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:42,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:43,131 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:43,131 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:43,131 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:43,143 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:43,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:43,443 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:43,443 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:43,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:43,727 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:43,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:43,754 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:43,754 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:43,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:44,065 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:44,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:44,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:44,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:44,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:44,372 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:44,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:44,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:44,739 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:44,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:44,739 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:44,739 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:44,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:45,041 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:45,041 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:45,041 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:45,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:45,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:45,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:45,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:45,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:45,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:08:45,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:08:45,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:45,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:45,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:45,731 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:45,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:45,983 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:45,983 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:45,983 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:45,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:46,284 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:46,284 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:46,284 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:46,303 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:46,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:46,606 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:46,606 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:46,618 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:46,737 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:46,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:46,916 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:46,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:46,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:47,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:47,231 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:47,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:47,266 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:47,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:47,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:47,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:47,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:47,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:47,743 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:47,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:47,874 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:47,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:47,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:48,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:48,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:48,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:48,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:48,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:48,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:48,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:48,594 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:48,752 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:48,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:48,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:48,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:48,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:49,198 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:49,198 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:49,198 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:49,246 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:49,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:49,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:49,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:49,598 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:49,757 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:49,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:49,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:49,880 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:49,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:50,322 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:50,322 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:50,322 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:50,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:50,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:50,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:50,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:50,767 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:50,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:51,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:51,151 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:51,151 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:51,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:51,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:51,547 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:51,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:51,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:51,784 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:51,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:51,874 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:51,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:51,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:52,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:52,187 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:52,187 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:52,199 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:52,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:52,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:52,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:52,527 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:52,796 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:52,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:52,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:52,812 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:52,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:52,853 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:53,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:53,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:53,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:53,175 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:53,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:53,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:53,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:53,493 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:53,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:53,754 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:53,754 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:53,798 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:53,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:54,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:54,056 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:54,056 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:54,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:54,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:54,387 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:54,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:54,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:54,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:54,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:54,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:54,753 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:54,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:55,043 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:55,044 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:55,044 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:55,078 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:55,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:55,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:55,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:55,453 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:55,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:55,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:55,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:55,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:55,824 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:56,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:56,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:56,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:56,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:56,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:56,408 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:56,408 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:56,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:56,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:56,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:56,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:56,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:56,831 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:57,031 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:57,032 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:57,032 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:57,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:57,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:57,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:57,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:57,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:57,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:57,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:57,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:57,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:57,836 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:57,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:57,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:57,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:57,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:08:57,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:58,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:58,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:58,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:58,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:58,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:58,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:58,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:58,608 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:58,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:58,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:58,909 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:58,909 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:58,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:59,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:59,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:59,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:59,237 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:59,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:59,533 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:59,533 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:59,546 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:08:59,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:08:59,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:08:59,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:08:59,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:08:59,857 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:00,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:00,152 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:00,152 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:00,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:00,444 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:09:00,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:00,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:00,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:00,488 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:00,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:09:00,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:09:00,793 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:00,793 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:00,793 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:00,810 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:00,854 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:01,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:01,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:01,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:01,118 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:01,430 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:01,430 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:01,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:01,443 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:01,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:01,746 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:01,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:01,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:01,862 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:02,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:02,057 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:02,057 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:02,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:02,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:02,370 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:02,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:02,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:02,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:02,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:02,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:02,696 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:02,868 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:02,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:02,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:02,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:02,997 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:03,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:03,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:03,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:03,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:03,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:03,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:03,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:03,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:03,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:03,880 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:03,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:03,916 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:03,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:03,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:04,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:04,237 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:04,237 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:04,249 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:04,555 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:04,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:04,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:04,567 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:04,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:04,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:04,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:04,884 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:04,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:05,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:05,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:05,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:05,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:05,486 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:05,486 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:05,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:05,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:05,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:05,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:05,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:05,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:05,885 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:06,123 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:06,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:06,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:06,134 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:06,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:06,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:06,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:06,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:06,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:06,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:06,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:06,756 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:06,890 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:07,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:07,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:07,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:07,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:07,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:07,370 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:07,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:07,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:07,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:07,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:07,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:07,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:07,902 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:07,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:07,988 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:07,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:08,000 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:08,000 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:08,299 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:08,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:08,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:08,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:08,609 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:08,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:08,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:08,621 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:08,914 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:08,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:08,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:08,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:08,971 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:09,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:09,257 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:09,257 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:09,298 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:09,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:09,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:09,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:09,643 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:09,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:09,920 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:09,922 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:09,922 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:09,972 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:10,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:10,267 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:10,267 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:10,331 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:10,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:10,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:10,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:10,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:10,930 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:11,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:11,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:11,081 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:11,164 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:11,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:11,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:11,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:11,547 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:11,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:11,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:11,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:11,934 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:11,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:12,295 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:12,295 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:12,296 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:12,377 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:12,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:12,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:12,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:12,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:12,943 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:13,234 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:13,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:13,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:13,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:13,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:13,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:13,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:13,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:13,753 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:13,951 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:14,123 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:14,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:14,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:14,188 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:14,569 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:14,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:14,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:14,649 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:14,963 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:14,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:14,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:14,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:15,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:15,419 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:15,419 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:15,420 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:15,484 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:15,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:09:15,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:09:15,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:15,837 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:15,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:15,889 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:15,968 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:16,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:16,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:16,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:16,236 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:16,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:16,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:16,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:16,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:16,900 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:16,900 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:16,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:16,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:16,971 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:17,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:17,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:17,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:17,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:17,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:17,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:17,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:17,651 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:17,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:17,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:17,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:17,961 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:17,972 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:18,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:18,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:18,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:18,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:18,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:18,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:18,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:18,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:18,577 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:18,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:18,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:18,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:18,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:18,979 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:19,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:19,192 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:19,192 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:19,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:19,503 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:19,504 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:19,504 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:19,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:19,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:19,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:19,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:19,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:19,984 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:20,127 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:20,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:20,128 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:20,140 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:20,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:20,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:20,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:20,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:20,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:20,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:20,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:20,763 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:21,006 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:21,063 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:21,063 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:21,064 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:21,084 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:21,377 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:21,377 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:21,377 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:21,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:21,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:21,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:21,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:21,701 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:22,001 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:22,002 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:22,002 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:22,010 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:22,011 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:22,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:22,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:22,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:22,322 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:22,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:22,620 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:22,620 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:22,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:22,915 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:22,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:22,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:22,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:23,014 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:23,225 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:23,226 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:23,226 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:23,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:23,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:23,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:23,542 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:23,542 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:23,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:23,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:23,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:23,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:23,869 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:24,019 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:24,173 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:24,173 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:24,173 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:24,185 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:24,488 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:24,488 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:24,488 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:24,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:24,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:24,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:24,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:24,804 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:25,033 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:25,107 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:25,107 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:25,107 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:25,119 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:25,422 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:25,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:25,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:25,436 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:25,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:25,728 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:25,728 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:25,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:26,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:26,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:26,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:26,045 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:26,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:26,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:26,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:26,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:26,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:26,662 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:26,662 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:26,662 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:26,674 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:26,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:26,976 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:26,976 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:26,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:27,045 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:27,280 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:27,280 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:27,280 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:27,298 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:27,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:27,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:27,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:27,610 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:27,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:27,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:27,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:27,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:28,051 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:28,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:28,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:28,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:28,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:28,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:28,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:28,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:28,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:28,544 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:28,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:28,846 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:28,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:28,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:29,061 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:29,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:29,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:29,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:29,166 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:29,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:29,457 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:29,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:29,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:29,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:29,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:29,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:29,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:30,073 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:30,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:30,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:30,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:30,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:30,415 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:30,415 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:30,415 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:30,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:30,445 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:09:30,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:09:30,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:09:30,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:30,733 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:30,733 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:30,777 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:31,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:31,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:31,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:31,074 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:31,086 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:31,358 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:31,358 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:31,358 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:31,403 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:31,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:31,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:31,686 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:31,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:31,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:31,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:31,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:32,016 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:32,074 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:32,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:32,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:32,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:32,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:32,652 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:32,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:32,652 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:32,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:32,980 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:32,980 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:32,980 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:33,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:33,078 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:33,334 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:33,334 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:33,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:33,388 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:33,692 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:33,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:33,693 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:33,693 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:33,757 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:34,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:34,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:34,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:34,078 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:34,127 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:34,408 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:34,409 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:34,409 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:34,479 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:34,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:34,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:34,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:34,851 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:35,090 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:35,139 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:35,139 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:35,139 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:35,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:35,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:35,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:35,479 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:35,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:35,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:35,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:35,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:35,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:36,095 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:36,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:36,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:36,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:36,286 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:36,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:36,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:36,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:36,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:37,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:37,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:37,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:37,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:37,100 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:37,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:37,445 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:37,445 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:37,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:37,827 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:37,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:37,827 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:37,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:38,115 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:38,204 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:38,205 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:38,205 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:38,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:38,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:38,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:38,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:38,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:38,719 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:39,127 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:39,166 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:39,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:39,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:39,219 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:39,686 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:39,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:39,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:39,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:40,010 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:40,010 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:40,010 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:40,038 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:40,134 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:40,322 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:40,322 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:40,322 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:40,339 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:40,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:40,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:40,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:40,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:40,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:40,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:40,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:40,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:41,139 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:41,253 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:41,253 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:41,253 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:41,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:41,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:41,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:41,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:41,584 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:41,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:41,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:41,880 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:41,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:42,151 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:42,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:42,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:42,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:42,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:42,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:42,504 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:42,504 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:42,515 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:42,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:42,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:42,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:42,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:43,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:43,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:43,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:43,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:43,151 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:43,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:43,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:43,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:43,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:43,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:43,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:43,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:43,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:43,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:44,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:44,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:44,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:44,167 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:44,184 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:44,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:44,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:44,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:44,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:44,815 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:44,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:44,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:44,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:45,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:45,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:45,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:45,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:45,178 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:45,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:45,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:45,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:45,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:45,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:09:45,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:09:45,767 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:45,768 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:45,768 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:45,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:46,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:46,082 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:46,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:46,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:46,183 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:46,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:46,393 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:46,393 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:46,414 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:46,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:46,699 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:46,699 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:46,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:47,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:47,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:47,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:47,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:47,191 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:47,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:47,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:47,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:47,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:47,646 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:47,646 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:47,646 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:47,655 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:47,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:47,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:47,957 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:47,972 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:48,207 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:48,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:48,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:48,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:48,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:48,583 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:48,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:48,584 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:48,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:48,900 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:48,900 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:48,900 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:48,900 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:48,912 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:49,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:49,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:49,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:49,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:49,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:49,513 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:49,513 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:49,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:49,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:49,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:49,836 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:49,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:49,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:50,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:50,150 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:50,150 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:50,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:50,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:50,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:50,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:50,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:50,472 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:50,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:50,774 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:50,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:50,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:51,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:51,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:51,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:51,101 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:51,225 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:51,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:51,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:51,397 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:51,408 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:51,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:51,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:51,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:51,719 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:52,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:52,020 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:52,020 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:52,032 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:52,232 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:52,322 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:52,322 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:52,322 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:52,341 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:52,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:52,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:52,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:52,654 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:52,953 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:52,953 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:52,953 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:52,965 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:53,244 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:53,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:53,261 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:53,261 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:53,273 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:53,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:53,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:53,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:53,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:53,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:53,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:53,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:53,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:54,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:54,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:54,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:54,201 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:54,213 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:54,244 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:54,512 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:54,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:54,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:54,524 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:54,819 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:54,819 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:54,819 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:54,838 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:55,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:55,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:55,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:55,158 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:55,249 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:55,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:55,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:55,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:55,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:55,769 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:55,769 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:55,769 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:55,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:56,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:56,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:56,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:56,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:56,258 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:56,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:56,400 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:56,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:56,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:56,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:56,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:56,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:56,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:57,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:57,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:57,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:57,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:57,278 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:57,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:57,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:57,356 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:57,402 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:57,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:57,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:57,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:57,720 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:57,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:57,994 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:57,994 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:58,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:58,290 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:58,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:58,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:58,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:58,375 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:58,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:58,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:58,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:58,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:59,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:59,015 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:59,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:59,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:59,302 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:09:59,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:59,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:59,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:59,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:09:59,472 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:09:59,770 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:09:59,770 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:09:59,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:09:59,835 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:00,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:00,086 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:00,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:00,150 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:00,322 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:00,412 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:00,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:00,413 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:00,472 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:00,472 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:10:00,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:10:00,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:10:00,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:00,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:00,739 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:00,803 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:01,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:01,055 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:01,055 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:01,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:01,334 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:01,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:01,375 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:01,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:01,445 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:01,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:01,715 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:01,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:01,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:02,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:02,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:02,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:02,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:02,340 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:02,340 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:02,340 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:02,340 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:02,402 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:02,671 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:02,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:02,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:02,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:02,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:02,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:02,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:03,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:03,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:03,314 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:03,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:03,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:03,349 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:03,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:03,620 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:03,620 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:03,666 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:03,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:03,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:03,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:04,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:04,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:04,262 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:04,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:04,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:04,355 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:04,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:04,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:04,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:04,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:04,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:04,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:04,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:04,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:04,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:05,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:05,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:05,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:05,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:05,359 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:05,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:05,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:05,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:05,607 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:05,977 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:05,978 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:05,978 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:06,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:06,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:06,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:06,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:06,309 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:06,360 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:06,606 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:06,607 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:06,607 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:06,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:06,919 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:06,919 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:06,920 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:06,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:07,229 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:07,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:07,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:07,241 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:07,363 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:07,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:07,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:07,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:07,549 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:07,837 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:07,837 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:07,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:07,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:08,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:08,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:08,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:08,172 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:08,374 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:08,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:08,476 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:08,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:08,488 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:08,790 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:08,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:08,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:08,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:09,101 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:09,102 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:09,102 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:09,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:09,385 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:09,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:09,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:09,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:09,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:09,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:09,733 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:09,733 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:09,733 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:09,742 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:10,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:10,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:10,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:10,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:10,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:10,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:10,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:10,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:10,386 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:10,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:10,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:10,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:10,686 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:10,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:10,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:10,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:10,994 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:11,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:11,282 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:11,282 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:11,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:11,392 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:11,606 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:11,606 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:11,607 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:11,618 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:11,922 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:11,923 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:11,923 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:11,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:12,234 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:12,234 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:12,234 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:12,246 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:12,399 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:12,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:12,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:12,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:12,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:12,862 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:12,862 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:12,862 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:12,874 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:13,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:13,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:13,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:13,185 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:13,411 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:13,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:13,489 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:13,490 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:13,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:13,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:13,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:13,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:13,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:14,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:14,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:14,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:14,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:14,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:14,423 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:14,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:14,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:14,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:14,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:14,782 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:14,782 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:14,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:14,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:15,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:15,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:15,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:15,118 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:15,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:15,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:15,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:15,434 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:15,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:15,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:10:15,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:10:15,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:15,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:15,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:15,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:16,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:16,060 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:16,060 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:16,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:16,367 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:16,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:16,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:16,407 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:16,434 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:16,689 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:16,690 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:16,690 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:16,744 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:16,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:16,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:16,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:17,036 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:17,323 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:17,324 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:17,324 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:17,376 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:17,441 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:17,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:17,636 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:17,636 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:17,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:17,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:17,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:17,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:18,003 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:18,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:18,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:18,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:18,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:18,446 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:18,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:18,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:18,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:18,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:18,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:18,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:18,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:18,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:19,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:19,202 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:19,202 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:19,257 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:19,466 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:19,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:19,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:19,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:19,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:19,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:19,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:19,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:19,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:19,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:20,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:20,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:20,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:20,207 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:20,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:20,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:20,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:20,476 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:20,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:20,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:20,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:20,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:20,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:21,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:21,101 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:21,101 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:21,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:21,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:21,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:21,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:21,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:21,477 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:21,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:21,723 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:21,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:21,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:22,035 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:22,035 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:22,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:22,047 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:22,346 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:22,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:22,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:22,359 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:22,483 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:22,650 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:22,650 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:22,650 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:22,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:22,995 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:22,995 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:22,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:23,043 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:23,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:23,318 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:23,318 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:23,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:23,489 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:23,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:23,646 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:23,646 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:23,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:23,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:23,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:23,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:24,043 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:24,323 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:24,324 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:24,324 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:24,388 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:24,493 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:24,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:24,646 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:24,646 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:24,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:24,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:24,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:24,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:24,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:25,032 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:25,284 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:25,285 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:25,285 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:25,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:25,502 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:25,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:25,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:25,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:25,683 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:25,964 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:25,964 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:25,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:26,024 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:26,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:26,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:26,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:26,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:26,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:26,820 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:26,821 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:26,821 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:26,866 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:27,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:27,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:27,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:27,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:27,517 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:27,654 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:27,655 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:27,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:27,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:27,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:27,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:27,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:27,979 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:28,280 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:28,281 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:28,281 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:28,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:28,535 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:28,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:28,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:28,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:28,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:28,899 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:28,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:28,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:28,911 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:29,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:29,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:29,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:29,222 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:29,515 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:29,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:29,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:29,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:29,535 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:29,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:29,836 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:29,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:29,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:30,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:30,152 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:30,152 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:30,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:30,164 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:30,446 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:10:30,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:30,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:30,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:30,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:30,540 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:30,597 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:10:30,597 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:10:30,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:30,776 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:30,776 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:30,790 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:31,086 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:31,086 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:31,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:31,105 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:31,409 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:31,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:31,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:31,422 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:31,550 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:31,724 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:31,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:31,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:31,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:32,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:32,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:32,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:32,046 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:32,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:32,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:32,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:32,358 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:32,560 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:32,650 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:32,650 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:32,650 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:32,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:32,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:32,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:32,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:32,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:33,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:33,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:33,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:33,336 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:33,572 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:33,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:33,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:33,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:33,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:33,945 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:33,945 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:33,945 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:34,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:34,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:34,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:34,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:34,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:34,584 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:34,600 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:34,600 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:34,600 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:34,671 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:34,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:34,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:34,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:35,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:35,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:35,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:35,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:35,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:35,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:35,596 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:35,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:35,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:35,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:35,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:35,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:35,929 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:35,929 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:36,002 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:36,285 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:36,285 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:36,285 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:36,370 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:36,608 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:36,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:36,639 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:36,639 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:36,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:36,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:36,980 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:36,980 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:37,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:37,309 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:37,309 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:37,309 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:37,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:37,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:37,617 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:37,617 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:37,617 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:37,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:37,980 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:37,981 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:37,981 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:38,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:38,357 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:38,358 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:38,358 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:38,399 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:38,628 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:38,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:38,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:38,670 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:38,692 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:38,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:38,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:38,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:39,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:39,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:39,292 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:39,292 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:39,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:39,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:39,602 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:39,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:39,614 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:39,628 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:39,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:39,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:39,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:39,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:40,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:40,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:40,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:40,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:40,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:40,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:40,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:40,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:40,546 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:40,633 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:40,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:40,846 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:40,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:40,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:41,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:41,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:41,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:41,172 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:41,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:41,464 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:41,464 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:41,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:41,639 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:41,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:41,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:41,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:41,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:42,095 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:42,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:42,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:42,109 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:42,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:42,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:42,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:42,415 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:42,651 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:42,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:42,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:42,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:42,724 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:43,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:43,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:43,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:43,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:43,339 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:43,340 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:43,340 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:43,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:43,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:43,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:43,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:43,664 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:43,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:43,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:43,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:43,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:44,015 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:44,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:44,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:44,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:44,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:44,676 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:44,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:44,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:44,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:44,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:45,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:45,024 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:45,024 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:45,084 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:45,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:45,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:45,352 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:45,407 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:45,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:10:45,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:10:45,670 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:45,678 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:45,735 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:45,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:45,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:45,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:45,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:45,988 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:45,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:46,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:46,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:46,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:46,311 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:46,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:46,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:46,638 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:46,638 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:46,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:46,700 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:46,966 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:46,966 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:46,966 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:47,024 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:47,412 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:47,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:47,412 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:47,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:47,719 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:47,819 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:47,819 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:47,819 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:47,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:48,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:48,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:48,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:48,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:48,578 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:48,578 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:48,578 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:48,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:48,726 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:48,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:48,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:48,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:48,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:49,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:49,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:49,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:49,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:49,559 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:49,560 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:49,560 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:49,571 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:49,732 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:49,864 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:49,864 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:49,864 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:49,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:50,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:50,185 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:50,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:50,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:50,488 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:50,488 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:50,488 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:50,509 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:50,754 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:50,806 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:50,807 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:50,807 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:50,807 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:50,835 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:51,111 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:51,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:51,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:51,173 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:51,426 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:51,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:51,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:51,467 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:51,731 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:51,731 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:51,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:51,754 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:51,777 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:52,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:52,055 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:52,055 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:52,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:52,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:52,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:52,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:52,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:52,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:52,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:52,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:52,698 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:52,761 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:52,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:52,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:52,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:52,995 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:53,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:53,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:53,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:53,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:53,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:53,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:53,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:53,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:53,765 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:53,918 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:53,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:53,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:53,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:54,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:54,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:54,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:54,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:54,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:54,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:54,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:54,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:54,775 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:54,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:54,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:54,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:54,901 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:55,171 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:55,171 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:55,172 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:55,214 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:55,480 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:55,480 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:55,480 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:55,523 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:55,788 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:55,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:55,804 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:55,804 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:55,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:55,830 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:10:56,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:56,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:56,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:56,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:56,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:56,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:56,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:56,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:56,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:56,745 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:56,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:56,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:56,788 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:57,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:57,057 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:57,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:57,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:57,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:57,373 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:57,373 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:57,385 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:57,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:57,685 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:57,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:57,698 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:57,792 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:57,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:57,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:57,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:58,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:58,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:58,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:58,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:58,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:58,624 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:58,624 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:58,624 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:58,634 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:58,798 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:58,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:58,939 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:58,939 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:58,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:59,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:59,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:59,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:59,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:59,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:59,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:59,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:59,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:10:59,811 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:10:59,863 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:10:59,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:10:59,863 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:10:59,875 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:00,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:00,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:00,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:00,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:00,449 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:11:00,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:00,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:00,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:00,514 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:00,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:11:00,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:11:00,815 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:00,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:00,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:00,824 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:00,829 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:01,131 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:01,132 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:01,132 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:01,132 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:01,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:01,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:01,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:01,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:01,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:01,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:01,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:01,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:01,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:01,824 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:02,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:02,060 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:02,060 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:02,079 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:02,388 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:02,389 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:02,389 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:02,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:02,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:02,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:02,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:02,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:02,831 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:03,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:03,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:03,007 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:03,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:03,314 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:03,314 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:03,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:03,326 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:03,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:03,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:03,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:03,641 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:03,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:03,923 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:03,923 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:03,923 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:03,941 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:04,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:04,238 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:04,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:04,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:04,549 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:04,550 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:04,550 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:04,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:04,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:04,863 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:04,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:04,863 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:04,875 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:05,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:05,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:05,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:05,196 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:05,481 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:05,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:05,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:05,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:05,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:05,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:05,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:05,867 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:05,867 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:06,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:06,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:06,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:06,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:06,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:06,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:06,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:06,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:06,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:06,865 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:06,865 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:06,865 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:06,883 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:06,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:07,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:07,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:07,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:07,307 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:07,619 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:07,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:07,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:07,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:07,895 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:07,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:07,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:07,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:08,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:08,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:08,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:08,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:08,414 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:08,729 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:08,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:08,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:08,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:08,900 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:09,115 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:09,116 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:09,116 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:09,175 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:09,524 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:09,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:09,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:09,588 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:09,900 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:09,900 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:09,900 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:09,908 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:09,961 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:10,364 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:10,364 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:10,364 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:10,407 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:10,751 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:10,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:10,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:10,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:10,915 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:11,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:11,192 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:11,192 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:11,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:11,246 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:11,613 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:11,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:11,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:11,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:11,919 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:12,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:12,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:12,042 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:12,083 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:12,414 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:12,414 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:12,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:12,437 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:12,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:12,728 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:12,728 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:12,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:12,924 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:13,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:13,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:13,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:13,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:13,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:13,359 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:13,359 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:13,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:13,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:13,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:13,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:13,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:13,936 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:13,983 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:13,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:13,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:14,011 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:14,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:14,286 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:14,286 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:14,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:14,693 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:14,694 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:14,694 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:14,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:14,948 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:15,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:15,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:15,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:15,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:15,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:15,305 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:15,305 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:15,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:15,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:11:15,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:11:15,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:15,739 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:15,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:15,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:15,928 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:15,928 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:15,928 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:15,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:15,948 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:16,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:16,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:16,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:16,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:16,271 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:16,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:16,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:16,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:16,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:16,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:16,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:16,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:16,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:16,949 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:17,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:17,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:17,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:17,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:17,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:17,492 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:17,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:17,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:17,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:17,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:17,810 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:17,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:17,955 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:18,126 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:18,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:18,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:18,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:18,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:18,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:18,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:18,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:18,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:18,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:18,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:18,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:18,971 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:19,059 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:19,060 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:19,060 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:19,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:19,370 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:19,371 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:19,371 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:19,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:19,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:19,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:19,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:19,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:19,983 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:19,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:19,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:19,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:20,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:20,323 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:20,323 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:20,323 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:20,335 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:20,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:20,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:20,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:20,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:20,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:20,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:20,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:20,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:20,983 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:21,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:21,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:21,245 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:21,264 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:21,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:21,560 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:21,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:21,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:21,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:21,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:21,873 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:21,873 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:21,884 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:21,988 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:22,187 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:22,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:22,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:22,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:22,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:22,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:22,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:22,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:22,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:22,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:22,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:22,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:22,992 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:23,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:23,108 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:23,108 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:23,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:23,424 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:23,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:23,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:23,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:23,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:23,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:23,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:23,776 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:24,004 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:24,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:24,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:24,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:24,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:24,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:24,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:24,364 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:24,412 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:24,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:24,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:24,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:24,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:24,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:24,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:24,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:25,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:25,006 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:25,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:25,295 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:25,295 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:25,318 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:25,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:25,609 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:25,609 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:25,621 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:25,918 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:25,919 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:25,919 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:25,931 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:26,012 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:26,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:26,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:26,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:26,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:26,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:26,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:26,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:26,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:26,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:26,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:26,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:26,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:26,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:27,016 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:27,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:27,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:27,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:27,171 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:27,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:27,461 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:27,461 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:27,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:27,769 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:27,769 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:27,769 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:27,788 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:28,025 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:28,084 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:28,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:28,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:28,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:28,395 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:28,395 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:28,395 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:28,407 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:28,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:28,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:28,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:28,726 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:29,037 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:29,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:29,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:29,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:29,142 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:29,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:29,480 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:29,480 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:29,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:29,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:29,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:29,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:29,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:30,044 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:30,257 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:30,258 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:30,258 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:30,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:30,451 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:11:30,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:11:30,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:11:30,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:30,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:30,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:30,793 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:30,965 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:30,965 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:30,965 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:31,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:31,050 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:31,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:31,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:31,352 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:31,410 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:31,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:31,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:31,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:31,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:31,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:32,067 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:32,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:32,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:32,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:32,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:32,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:32,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:32,533 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:32,580 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:32,958 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:32,958 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:32,958 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:33,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:33,079 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:33,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:33,492 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:33,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:33,565 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:34,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:34,073 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:34,073 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:34,088 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:34,127 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:34,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:34,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:34,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:34,722 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:35,094 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:35,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:35,150 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:35,150 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:35,185 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:35,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:35,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:35,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:35,549 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:35,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:35,832 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:35,832 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:35,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:36,105 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:36,139 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:36,147 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:36,147 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:36,152 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:36,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:36,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:36,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:36,458 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:36,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:36,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:36,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:36,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:36,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:37,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:37,072 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:37,072 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:37,086 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:37,105 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:37,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:37,383 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:37,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:37,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:37,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:37,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:37,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:37,702 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:38,000 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:38,001 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:38,001 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:38,013 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:38,112 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:38,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:38,313 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:38,313 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:38,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:38,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:38,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:38,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:38,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:38,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:38,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:38,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:38,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:39,125 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:39,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:39,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:39,241 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:39,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:39,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:39,547 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:39,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:39,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:39,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:39,851 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:39,851 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:39,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:40,137 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:40,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:40,163 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:40,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:40,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:40,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:40,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:40,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:40,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:40,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:40,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:40,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:40,818 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:41,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:41,108 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:41,108 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:41,134 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:41,137 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:41,420 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:41,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:41,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:41,432 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:41,729 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:41,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:41,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:41,741 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:42,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:42,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:42,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:42,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:42,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:42,144 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:42,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:42,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:42,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:42,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:42,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:42,648 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:42,648 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:42,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:42,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:42,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:42,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:42,974 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:43,148 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:43,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:43,264 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:43,264 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:43,283 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:43,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:43,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:43,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:43,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:43,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:43,897 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:43,897 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:43,909 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:44,160 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:44,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:44,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:44,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:44,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:44,516 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:44,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:44,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:44,529 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:44,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:44,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:44,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:44,953 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:45,170 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:45,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:45,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:45,257 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:45,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:45,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:45,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:45,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:45,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:45,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:11:45,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:11:45,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:45,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:45,889 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:45,901 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:46,182 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:46,195 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:46,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:46,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:46,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:46,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:46,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:46,503 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:46,514 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:46,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:46,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:46,812 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:46,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:47,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:47,108 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:47,108 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:47,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:47,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:47,182 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:47,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:47,429 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:47,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:47,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:47,742 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:47,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:47,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:47,754 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:48,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:48,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:48,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:48,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:48,188 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:48,356 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:48,356 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:48,356 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:48,376 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:48,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:48,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:48,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:48,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:48,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:48,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:48,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:48,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:49,205 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:49,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:49,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:49,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:49,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:49,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:49,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:49,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:49,626 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:49,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:49,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:49,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:49,931 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:50,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:50,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:50,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:50,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:50,257 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:50,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:50,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:50,537 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:50,585 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:50,847 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:50,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:50,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:50,902 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:51,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:51,151 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:51,151 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:51,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:51,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:51,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:51,473 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:51,473 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:51,495 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:51,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:51,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:51,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:51,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:52,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:52,097 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:52,097 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:52,145 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:52,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:52,225 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:52,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:52,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:52,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:52,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:52,781 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:52,781 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:52,781 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:52,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:53,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:53,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:53,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:53,169 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:53,232 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:53,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:53,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:53,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:53,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:53,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:53,797 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:53,797 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:53,881 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:54,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:54,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:54,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:54,235 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:54,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:54,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:54,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:54,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:54,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:54,901 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:54,901 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:54,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:54,972 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:55,249 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:55,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:55,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:55,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:55,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:55,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:55,691 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:55,691 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:55,763 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:56,052 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:56,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:56,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:56,134 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:56,254 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:56,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:56,429 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:56,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:56,495 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:56,920 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:56,920 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:56,920 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:56,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:57,276 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:57,408 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:57,409 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:57,409 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:57,409 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:11:57,472 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:57,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:57,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:57,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:57,961 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:58,290 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:58,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:58,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:58,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:58,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:58,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:58,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:58,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:58,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:59,298 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:59,298 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:11:59,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:59,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:59,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:59,606 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:59,606 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:59,606 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:59,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:11:59,923 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:11:59,923 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:11:59,923 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:11:59,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:00,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:00,244 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:00,244 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:00,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:00,299 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:00,452 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:12:00,575 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:00,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:00,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:00,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:00,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:12:00,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:12:00,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:00,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:00,878 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:00,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:01,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:01,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:01,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:01,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:01,307 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:01,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:01,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:01,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:01,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:01,806 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:01,806 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:01,806 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:01,825 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:02,130 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:02,131 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:02,131 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:02,143 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:02,313 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:02,442 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:02,442 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:02,442 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:02,443 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:02,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:02,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:02,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:02,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:02,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:03,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:03,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:03,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:03,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:03,330 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:03,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:03,376 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:03,376 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:03,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:03,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:03,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:03,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:03,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:03,994 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:03,994 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:03,994 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:04,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:04,304 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:04,304 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:04,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:04,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:04,330 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:04,614 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:04,614 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:04,615 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:04,626 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:04,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:04,913 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:04,913 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:04,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:05,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:05,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:05,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:05,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:05,337 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:05,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:05,547 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:05,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:05,560 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:05,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:05,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:05,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:05,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:06,166 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:06,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:06,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:06,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:06,344 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:06,472 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:06,472 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:06,472 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:06,497 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:06,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:06,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:06,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:06,801 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:07,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:07,097 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:07,097 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:07,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:07,364 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:07,402 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:07,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:07,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:07,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:07,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:07,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:07,723 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:07,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:07,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:08,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:08,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:08,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:08,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:08,350 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:08,350 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:08,350 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:08,364 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:08,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:08,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:08,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:08,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:08,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:08,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:08,959 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:08,959 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:08,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:09,283 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:09,284 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:09,284 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:09,295 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:09,371 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:09,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:09,594 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:09,594 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:09,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:09,894 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:09,894 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:09,894 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:09,913 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:10,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:10,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:10,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:10,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:10,378 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:10,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:10,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:10,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:10,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:10,837 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:10,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:10,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:10,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:11,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:11,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:11,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:11,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:11,383 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:11,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:11,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:11,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:11,478 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:11,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:11,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:11,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:11,788 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:12,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:12,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:12,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:12,104 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:12,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:12,390 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:12,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:12,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:12,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:12,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:12,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:12,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:12,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:12,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:13,017 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:13,017 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:13,017 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:13,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:13,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:13,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:13,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:13,371 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:13,390 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:13,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:13,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:13,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:13,686 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:13,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:13,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:13,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:13,999 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:14,265 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:14,265 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:14,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:14,286 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:14,397 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:14,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:14,565 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:14,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:14,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:14,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:14,897 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:14,897 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:14,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:15,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:15,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:15,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:15,232 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:15,402 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:15,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:15,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:15,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:15,535 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:15,609 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:12:15,609 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:12:15,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:15,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:15,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:15,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:16,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:16,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:16,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:16,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:16,417 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:16,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:16,506 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:16,506 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:16,569 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:16,842 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:16,842 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:16,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:16,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:17,191 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:17,192 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:17,192 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:17,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:17,431 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:17,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:17,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:17,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:17,592 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:17,863 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:17,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:17,864 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:17,864 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:17,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:18,187 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:18,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:18,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:18,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:18,447 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:18,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:18,536 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:18,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:18,596 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:18,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:18,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:18,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:18,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:19,211 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:19,212 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:19,212 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:19,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:19,455 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:19,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:19,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:19,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:19,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:20,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:20,052 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:20,052 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:20,090 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:20,466 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:20,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:20,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:20,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:20,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:20,854 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:20,854 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:20,854 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:20,880 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:21,166 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:21,167 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:21,167 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:21,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:21,467 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:21,477 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:21,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:21,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:21,488 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:21,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:21,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:21,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:21,803 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:22,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:22,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:22,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:22,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:22,412 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:22,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:22,412 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:22,424 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:22,468 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:22,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:22,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:22,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:22,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:23,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:23,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:23,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:23,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:23,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:23,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:23,351 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:23,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:23,384 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:23,473 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:23,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:23,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:23,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:23,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:23,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:23,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:23,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:24,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:24,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:24,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:24,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:24,332 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:24,479 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:24,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:24,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:24,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:24,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:24,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:24,902 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:24,902 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:24,955 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:25,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:25,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:25,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:25,246 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:25,491 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:25,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:25,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:25,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:25,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:25,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:25,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:25,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:25,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:26,150 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:26,151 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:26,151 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:26,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:26,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:26,472 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:26,472 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:26,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:26,491 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:26,770 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:26,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:26,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:26,782 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:27,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:27,083 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:27,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:27,100 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:27,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:27,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:27,382 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:27,429 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:27,497 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:27,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:27,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:27,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:27,742 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:28,015 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:28,016 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:28,016 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:28,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:28,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:28,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:28,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:28,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:28,376 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:28,505 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:28,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:28,639 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:28,639 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:28,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:28,949 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:28,949 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:28,949 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:28,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:29,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:29,258 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:29,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:29,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:29,518 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:29,566 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:29,566 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:29,566 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:29,579 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:29,871 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:29,872 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:29,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:29,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:30,172 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:30,172 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:30,172 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:30,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:30,452 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:12:30,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:30,492 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:30,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:30,506 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:30,518 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:30,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:12:30,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:12:30,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:30,801 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:30,801 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:30,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:31,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:31,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:31,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:31,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:31,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:31,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:31,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:31,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:31,527 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:31,752 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:31,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:31,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:31,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:32,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:32,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:32,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:32,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:32,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:32,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:32,369 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:32,381 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:32,532 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:32,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:32,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:32,680 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:32,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:32,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:32,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:32,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:33,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:33,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:33,306 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:33,306 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:33,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:33,318 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:33,554 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:33,618 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:33,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:33,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:33,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:33,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:33,928 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:33,928 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:33,940 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:34,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:34,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:34,237 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:34,248 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:34,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:34,542 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:34,542 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:34,555 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:34,555 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:34,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:34,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:34,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:34,869 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:35,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:35,164 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:35,164 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:35,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:35,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:35,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:35,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:35,491 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:35,559 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:35,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:35,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:35,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:35,797 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:36,093 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:36,094 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:36,094 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:36,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:36,404 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:36,405 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:36,405 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:36,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:36,567 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:36,717 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:36,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:36,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:36,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:37,017 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:37,017 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:37,017 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:37,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:37,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:37,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:37,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:37,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:37,580 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:37,671 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:37,671 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:37,671 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:37,726 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:38,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:38,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:38,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:38,072 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:38,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:38,335 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:38,335 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:38,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:38,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:38,592 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:38,647 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:38,647 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:38,647 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:38,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:38,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:38,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:38,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:39,040 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:39,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:39,305 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:39,305 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:39,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:39,605 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:39,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:39,639 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:39,639 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:39,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:39,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:39,962 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:39,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:40,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:40,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:40,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:40,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:40,343 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:40,623 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:40,676 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:40,676 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:40,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:40,739 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:41,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:41,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:41,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:41,161 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:41,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:41,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:41,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:41,609 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:41,628 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:41,977 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:41,977 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:41,977 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:42,063 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:42,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:42,401 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:42,401 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:42,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:42,639 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:42,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:42,832 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:42,832 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:42,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:43,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:43,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:43,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:43,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:43,654 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:43,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:43,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:43,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:43,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:43,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:44,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:44,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:44,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:44,223 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:44,599 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:44,599 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:44,599 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:44,655 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:44,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:44,915 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:44,916 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:44,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:44,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:45,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:45,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:45,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:45,388 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:45,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:12:45,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:12:45,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:45,660 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:45,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:45,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:45,823 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:45,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:45,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:45,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:46,043 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:46,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:46,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:46,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:46,386 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:46,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:46,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:46,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:46,676 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:46,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:47,067 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:47,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:47,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:47,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:47,442 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:47,443 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:47,443 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:47,493 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:47,684 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:47,796 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:47,796 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:47,796 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:47,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:48,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:48,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:48,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:48,131 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:48,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:48,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:48,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:48,443 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:48,695 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:48,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:48,727 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:48,727 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:48,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:48,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:49,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:49,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:49,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:49,063 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:49,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:49,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:49,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:49,376 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:49,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:49,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:49,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:49,688 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:49,695 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:49,977 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:49,978 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:49,978 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:49,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:50,285 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:50,286 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:50,286 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:50,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:50,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:50,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:50,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:50,601 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:50,700 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:50,905 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:50,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:50,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:50,918 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:51,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:51,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:51,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:51,223 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:51,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:51,521 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:51,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:51,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:51,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:51,828 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:51,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:51,828 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:51,840 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:52,139 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:52,139 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:52,139 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:52,151 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:52,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:52,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:52,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:52,457 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:52,727 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:52,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:52,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:52,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:52,765 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:53,065 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:53,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:53,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:53,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:53,364 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:53,364 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:53,364 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:53,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:53,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:53,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:53,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:53,699 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:53,727 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:53,986 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:53,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:53,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:53,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:54,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:54,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:54,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:54,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:54,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:54,607 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:54,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:54,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:54,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:54,734 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:54,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:54,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:54,917 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:54,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:55,229 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:55,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:55,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:55,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:55,539 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:55,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:55,540 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:55,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:55,742 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:55,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:55,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:55,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:55,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:56,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:56,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:56,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:56,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:56,456 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:56,456 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:56,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:56,471 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:56,754 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:56,770 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:56,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:56,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:56,784 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:57,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:57,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:57,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:57,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:57,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:57,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:57,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:57,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:57,412 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:57,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:57,412 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:57,424 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:57,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:57,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:57,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:57,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:57,764 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:57,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:57,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:57,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:57,965 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:58,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:58,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:58,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:58,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:58,578 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:58,579 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:58,579 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:58,590 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:58,771 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:58,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:58,896 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:58,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:58,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:59,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:59,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:59,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:59,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:12:59,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:59,517 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:59,518 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:59,518 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:59,530 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:12:59,783 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:12:59,829 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:12:59,830 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:12:59,830 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:12:59,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:00,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:00,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:00,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:00,176 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:00,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:00,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:00,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:00,497 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:00,497 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:13:00,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:13:00,615 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:13:00,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:00,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:00,772 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:00,783 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:00,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:01,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:01,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:01,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:01,145 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:01,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:01,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:01,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:01,513 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:01,787 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:01,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:01,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:01,796 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:01,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:02,167 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:02,167 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:02,167 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:02,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:02,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:02,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:02,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:02,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:02,809 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:02,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:02,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:02,987 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:03,055 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:03,405 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:03,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:03,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:03,461 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:03,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:03,793 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:03,793 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:03,815 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:03,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:04,150 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:04,150 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:04,150 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:04,208 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:04,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:04,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:04,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:04,537 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:04,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:04,826 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:04,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:04,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:04,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:04,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:05,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:05,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:05,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:05,395 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:05,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:05,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:05,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:05,829 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:05,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:06,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:06,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:06,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:06,388 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:06,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:06,797 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:06,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:06,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:06,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:07,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:07,258 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:07,258 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:07,305 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:07,670 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:07,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:07,670 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:07,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:07,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:08,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:08,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:08,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:08,119 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:08,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:08,383 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:08,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:08,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:08,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:08,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:08,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:08,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:08,846 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:09,023 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:09,023 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:09,023 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:09,072 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:09,334 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:09,335 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:09,335 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:09,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:09,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:09,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:09,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:09,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:09,657 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:09,856 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:09,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:09,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:09,948 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:09,968 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:10,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:10,262 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:10,262 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:10,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:10,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:10,584 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:10,584 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:10,596 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:10,868 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:10,897 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:10,898 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:10,898 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:10,909 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:11,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:11,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:11,211 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:11,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:11,524 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:11,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:11,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:11,535 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:11,831 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:11,831 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:11,832 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:11,843 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:11,868 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:12,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:12,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:12,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:12,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:12,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:12,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:12,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:12,456 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:12,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:12,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:12,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:12,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:12,873 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:13,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:13,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:13,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:13,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:13,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:13,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:13,382 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:13,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:13,693 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:13,693 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:13,693 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:13,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:13,880 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:13,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:14,000 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:14,000 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:14,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:14,296 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:14,296 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:14,296 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:14,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:14,617 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:14,618 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:14,618 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:14,618 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:14,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:14,892 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:14,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:14,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:14,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:14,937 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:15,234 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:15,234 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:15,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:15,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:15,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:15,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:15,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:15,596 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:15,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:13:15,615 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:13:15,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:15,896 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:15,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:15,904 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:15,910 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:16,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:16,199 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:16,199 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:16,225 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:16,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:16,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:16,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:16,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:16,841 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:16,841 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:16,841 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:16,882 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:16,905 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:17,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:17,151 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:17,151 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:17,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:17,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:17,464 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:17,464 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:17,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:17,778 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:17,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:17,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:17,819 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:17,910 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:18,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:18,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:18,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:18,116 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:18,399 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:18,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:18,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:18,432 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:18,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:18,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:18,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:18,723 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:18,921 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:19,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:19,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:19,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:19,032 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:19,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:19,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:19,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:19,340 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:19,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:19,644 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:19,644 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:19,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:19,657 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:19,933 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:19,953 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:19,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:19,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:19,967 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:20,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:20,265 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:20,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:20,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:20,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:20,578 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:20,578 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:20,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:20,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:20,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:20,885 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:20,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:20,933 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:21,184 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:21,184 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:21,184 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:21,203 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:21,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:21,498 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:21,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:21,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:21,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:21,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:21,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:21,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:21,940 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:22,120 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:22,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:22,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:22,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:22,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:22,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:22,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:22,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:22,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:22,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:22,738 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:22,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:22,951 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:23,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:23,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:23,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:23,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:23,350 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:23,350 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:23,350 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:23,369 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:23,670 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:23,671 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:23,671 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:23,682 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:23,963 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:23,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:23,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:23,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:24,011 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:24,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:24,300 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:24,300 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:24,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:24,609 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:24,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:24,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:24,639 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:24,978 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:24,978 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:24,979 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:24,979 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:24,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:25,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:25,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:25,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:25,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:25,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:25,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:25,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:25,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:25,772 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:25,988 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:26,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:26,056 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:26,056 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:26,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:26,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:26,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:26,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:26,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:26,861 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:26,861 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:26,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:26,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:26,994 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:27,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:27,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:27,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:27,359 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:27,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:27,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:27,742 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:27,812 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:28,003 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:28,146 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:28,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:28,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:28,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:28,553 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:28,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:28,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:28,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:28,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:28,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:28,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:29,008 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:29,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:29,301 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:29,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:29,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:29,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:29,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:29,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:29,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:29,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:30,020 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:30,052 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:30,052 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:30,052 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:30,052 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:30,103 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:30,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:30,445 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:30,445 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:30,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:30,499 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:13:30,617 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:13:30,617 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:13:30,840 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:30,841 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:30,841 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:30,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:31,029 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:31,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:31,238 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:31,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:31,273 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:31,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:31,547 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:31,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:31,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:31,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:31,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:31,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:31,870 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:32,034 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:32,167 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:32,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:32,168 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:32,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:32,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:32,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:32,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:32,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:32,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:32,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:32,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:32,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:33,046 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:33,088 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:33,088 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:33,088 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:33,137 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:33,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:33,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:33,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:33,457 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:33,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:33,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:33,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:33,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:34,018 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:34,018 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:34,018 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:34,047 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:34,047 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:34,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:34,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:34,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:34,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:34,653 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:34,653 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:34,653 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:34,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:34,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:34,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:34,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:34,974 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:35,051 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:35,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:35,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:35,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:35,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:35,283 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:35,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:35,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:35,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:35,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:35,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:35,893 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:35,893 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:35,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:36,057 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:36,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:36,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:36,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:36,207 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:36,510 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:36,511 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:36,511 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:36,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:36,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:36,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:36,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:36,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:37,070 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:37,137 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:37,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:37,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:37,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:37,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:37,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:37,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:37,461 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:37,757 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:37,758 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:37,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:37,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:38,067 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:38,067 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:38,067 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:38,076 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:38,081 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:38,376 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:38,377 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:38,377 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:38,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:38,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:38,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:38,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:38,696 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:38,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:38,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:38,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:39,002 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:39,081 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:39,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:39,306 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:39,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:39,319 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:39,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:39,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:39,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:39,634 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:39,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:39,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:39,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:39,950 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:40,086 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:40,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:40,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:40,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:40,259 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:40,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:40,565 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:40,566 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:40,566 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:40,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:40,865 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:40,865 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:40,865 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:40,884 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:41,101 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:41,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:41,185 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:41,185 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:41,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:41,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:41,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:41,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:41,509 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:41,805 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:41,806 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:41,806 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:41,815 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:42,120 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:42,120 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:42,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:42,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:42,153 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:42,515 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:42,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:42,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:42,527 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:42,822 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:42,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:42,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:42,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:43,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:43,124 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:43,124 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:43,124 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:43,142 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:43,446 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:43,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:43,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:43,458 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:43,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:43,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:43,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:43,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:44,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:44,064 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:44,064 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:44,100 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:44,124 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:44,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:44,387 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:44,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:44,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:44,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:44,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:44,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:44,741 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:45,021 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:45,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:45,021 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:45,059 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:45,132 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:45,325 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:45,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:45,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:45,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:45,624 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:13:45,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:13:45,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:45,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:45,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:45,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:45,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:46,023 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:46,023 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:46,023 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:46,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:46,136 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:46,346 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:46,346 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:46,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:46,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:46,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:46,655 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:46,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:46,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:46,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:46,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:46,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:47,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:47,143 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:47,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:47,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:47,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:47,306 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:47,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:47,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:47,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:47,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:47,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:47,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:47,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:48,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:48,151 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:48,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:48,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:48,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:48,424 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:48,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:48,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:48,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:48,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:49,073 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:49,073 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:49,073 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:49,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:49,155 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:49,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:49,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:49,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:49,544 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:49,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:49,872 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:49,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:49,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:50,164 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:50,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:50,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:50,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:50,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:50,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:50,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:50,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:50,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:51,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:51,097 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:51,097 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:51,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:51,156 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:51,169 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:51,480 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:51,480 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:51,480 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:51,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:51,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:51,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:51,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:51,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:52,131 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:52,132 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:52,132 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:52,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:52,183 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:52,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:52,506 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:52,506 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:52,566 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:52,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:52,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:52,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:52,953 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:53,200 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:53,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:53,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:53,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:53,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:53,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:53,673 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:53,673 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:53,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:53,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:53,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:53,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:53,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:54,204 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:54,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:54,291 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:54,291 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:54,303 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:54,598 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:54,599 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:54,599 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:54,610 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:54,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:54,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:54,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:54,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:55,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:55,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:55,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:55,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:55,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:55,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:55,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:55,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:55,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:55,827 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:55,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:55,827 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:55,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:56,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:56,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:56,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:56,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:13:56,161 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:56,209 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:56,456 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:56,457 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:56,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:56,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:56,770 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:56,770 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:56,770 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:56,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:57,081 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:57,082 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:57,082 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:57,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:57,212 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:57,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:57,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:57,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:57,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:57,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:57,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:57,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:57,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:58,021 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:58,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:58,021 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:58,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:58,223 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:58,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:58,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:58,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:58,350 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:58,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:58,648 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:58,648 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:58,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:58,958 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:58,958 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:58,959 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:58,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:59,239 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:13:59,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:59,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:59,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:59,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:59,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:59,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:59,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:59,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:13:59,891 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:13:59,892 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:13:59,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:13:59,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:00,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:00,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:00,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:00,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:00,239 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:00,469 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:14:00,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:00,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:00,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:00,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:00,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:14:00,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:14:00,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:00,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:00,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:00,864 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:01,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:01,152 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:01,152 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:01,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:01,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:01,247 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:01,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:01,486 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:01,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:01,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:01,789 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:01,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:01,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:01,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:02,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:02,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:02,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:02,146 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:02,253 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:02,422 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:02,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:02,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:02,460 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:02,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:02,735 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:02,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:02,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:03,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:03,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:03,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:03,058 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:03,270 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:03,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:03,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:03,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:03,371 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:03,670 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:03,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:03,670 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:03,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:03,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:03,980 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:03,980 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:04,014 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:04,291 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:04,291 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:04,292 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:04,292 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:04,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:04,601 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:04,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:04,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:04,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:04,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:04,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:04,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:04,956 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:05,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:05,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:05,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:05,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:05,282 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:05,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:05,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:05,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:05,613 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:05,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:05,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:05,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:05,909 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:06,170 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:06,170 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:06,171 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:06,171 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:06,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:06,287 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:06,481 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:06,481 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:06,481 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:06,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:06,795 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:06,795 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:06,795 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:06,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:07,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:07,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:07,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:07,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:07,293 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:07,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:07,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:07,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:07,438 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:07,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:07,737 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:07,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:07,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:08,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:08,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:08,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:08,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:08,305 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:08,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:08,351 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:08,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:08,363 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:08,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:08,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:08,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:08,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:08,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:08,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:08,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:08,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:09,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:09,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:09,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:09,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:09,305 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:09,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:09,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:09,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:09,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:09,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:09,913 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:09,913 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:09,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:10,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:10,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:10,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:10,236 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:10,311 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:10,540 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:10,541 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:10,541 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:10,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:10,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:10,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:10,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:10,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:11,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:11,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:11,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:11,238 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:11,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:11,322 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:11,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:11,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:11,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:11,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:11,853 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:11,854 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:11,854 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:11,911 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:12,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:12,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:12,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:12,241 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:12,332 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:12,512 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:12,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:12,512 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:12,569 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:12,840 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:12,840 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:12,841 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:12,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:13,177 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:13,177 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:13,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:13,234 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:13,337 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:13,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:13,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:13,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:13,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:13,898 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:13,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:13,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:13,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:14,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:14,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:14,295 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:14,339 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:14,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:14,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:14,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:14,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:14,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:15,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:15,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:15,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:15,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:15,351 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:15,415 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:15,415 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:15,416 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:15,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:15,647 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:14:15,647 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:14:15,751 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:15,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:15,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:15,784 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:16,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:16,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:16,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:16,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:16,363 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:16,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:16,379 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:16,379 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:16,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:16,391 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:16,690 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:16,691 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:16,691 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:16,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:16,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:16,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:16,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:17,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:17,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:17,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:17,313 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:17,343 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:17,363 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:17,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:17,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:17,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:17,641 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:17,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:17,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:17,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:17,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:18,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:18,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:18,240 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:18,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:18,370 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:18,559 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:18,559 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:18,559 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:18,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:18,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:18,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:18,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:18,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:19,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:19,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:19,237 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:19,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:19,379 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:19,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:19,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:19,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:19,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:19,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:19,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:19,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:19,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:20,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:20,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:20,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:20,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:20,384 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:20,599 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:20,599 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:20,599 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:20,646 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:20,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:20,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:20,917 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:20,949 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:21,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:21,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:21,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:21,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:21,388 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:21,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:21,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:21,537 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:21,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:21,569 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:21,861 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:21,861 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:21,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:21,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:22,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:22,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:22,168 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:22,187 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:22,396 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:22,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:22,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:22,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:22,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:22,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:22,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:22,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:22,810 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:23,107 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:23,107 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:23,107 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:23,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:23,408 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:23,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:23,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:23,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:23,443 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:23,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:23,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:23,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:23,754 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:24,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:24,048 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:24,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:24,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:24,348 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:24,348 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:24,348 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:24,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:24,408 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:24,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:24,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:24,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:24,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:24,978 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:24,978 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:24,979 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:24,992 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:25,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:25,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:25,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:25,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:25,416 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:25,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:25,595 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:25,595 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:25,608 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:25,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:25,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:25,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:25,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:26,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:26,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:26,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:26,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:26,430 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:26,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:26,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:26,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:26,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:26,831 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:26,831 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:26,831 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:26,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:26,843 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:27,143 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:27,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:27,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:27,156 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:27,441 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:27,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:27,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:27,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:27,460 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:27,766 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:27,767 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:27,767 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:27,779 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:28,074 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:28,074 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:28,074 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:28,086 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:28,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:28,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:28,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:28,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:28,441 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:28,703 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:28,703 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:28,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:28,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:29,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:29,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:29,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:29,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:29,317 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:29,317 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:29,317 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:29,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:29,449 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:29,619 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:29,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:29,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:29,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:29,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:29,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:29,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:29,952 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:30,242 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:30,242 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:30,242 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:30,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:30,464 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:30,475 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:14:30,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:30,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:30,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:30,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:30,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:14:30,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:14:30,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:30,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:30,878 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:30,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:31,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:31,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:31,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:31,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:31,476 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:31,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:31,498 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:31,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:31,544 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:31,815 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:31,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:31,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:31,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:31,858 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:32,146 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:32,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:32,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:32,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:32,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:32,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:32,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:32,476 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:32,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:32,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:32,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:32,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:32,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:33,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:33,142 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:33,142 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:33,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:33,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:33,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:33,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:33,484 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:33,529 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:33,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:33,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:33,801 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:33,872 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:34,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:34,152 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:34,152 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:34,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:34,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:34,485 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:34,485 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:34,487 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:34,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:34,826 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:34,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:34,827 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:34,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:35,205 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:35,205 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:35,205 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:35,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:35,497 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:35,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:35,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:35,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:35,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:36,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:36,106 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:36,106 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:36,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:36,509 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:36,524 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:36,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:36,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:36,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:36,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:36,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:36,948 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:36,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:37,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:37,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:37,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:37,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:37,427 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:37,519 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:37,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:37,795 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:37,795 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:37,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:38,174 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:38,174 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:38,174 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:38,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:38,533 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:38,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:38,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:38,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:38,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:39,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:39,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:39,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:39,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:39,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:39,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:39,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:39,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:39,541 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:39,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:39,657 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:39,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:39,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:40,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:40,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:40,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:40,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:40,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:40,348 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:40,348 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:40,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:40,547 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:40,747 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:40,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:40,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:40,793 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:41,137 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:41,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:41,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:41,173 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:41,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:41,449 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:41,449 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:41,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:41,556 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:41,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:41,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:41,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:41,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:42,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:42,076 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:42,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:42,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:42,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:42,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:42,375 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:42,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:42,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:42,564 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:42,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:42,699 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:42,699 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:42,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:43,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:43,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:43,012 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:43,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:43,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:43,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:43,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:43,340 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:43,577 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:43,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:43,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:43,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:43,645 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:43,938 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:43,938 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:43,938 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:43,957 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:44,261 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:44,261 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:44,261 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:44,273 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:44,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:44,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:44,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:44,579 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:44,579 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:44,920 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:44,920 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:44,920 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:44,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:45,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:45,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:45,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:45,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:45,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:45,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:45,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:45,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:45,580 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:45,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:14:45,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:14:45,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:45,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:45,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:45,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:46,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:46,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:46,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:46,204 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:46,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:46,506 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:46,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:46,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:46,580 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:46,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:46,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:46,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:46,828 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:47,127 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:47,127 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:47,127 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:47,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:47,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:47,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:47,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:47,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:47,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:47,586 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:47,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:47,746 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:47,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:47,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:48,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:48,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:48,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:48,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:48,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:48,372 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:48,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:48,384 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:48,592 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:48,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:48,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:48,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:48,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:48,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:48,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:48,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:49,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:49,293 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:49,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:49,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:49,312 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:49,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:49,604 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:49,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:49,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:49,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:49,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:49,931 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:49,931 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:49,943 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:50,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:50,240 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:50,240 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:50,253 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:50,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:50,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:50,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:50,560 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:50,604 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:50,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:50,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:50,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:50,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:51,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:51,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:51,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:51,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:51,478 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:51,486 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:51,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:51,490 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:51,609 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:51,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:51,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:51,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:51,797 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:52,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:52,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:52,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:52,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:52,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:52,400 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:52,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:52,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:52,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:52,630 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:52,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:52,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:52,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:52,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:53,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:53,024 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:53,024 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:53,043 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:53,337 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:53,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:53,337 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:53,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:53,642 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:53,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:53,661 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:53,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:53,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:53,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:53,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:53,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:54,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:54,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:54,282 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:54,282 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:54,322 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:54,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:54,593 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:54,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:54,634 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:54,642 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:54,905 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:54,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:54,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:54,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:55,207 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:55,207 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:55,207 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:55,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:55,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:55,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:55,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:55,546 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:55,649 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:55,863 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:55,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:55,864 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:55,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:56,175 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:56,175 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:56,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:56,218 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:56,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:56,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:56,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:56,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:56,657 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:56,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:56,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:56,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:56,876 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:57,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:57,124 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:57,124 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:57,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:57,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:57,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:57,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:57,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:14:57,490 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:57,672 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:57,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:57,739 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:57,739 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:57,805 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:58,062 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:58,063 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:58,063 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:58,121 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:58,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:58,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:58,382 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:58,445 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:58,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:58,692 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:58,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:58,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:58,753 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:59,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:59,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:59,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:59,089 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:59,349 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:59,349 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:59,349 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:59,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:59,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:59,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:59,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:14:59,693 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:14:59,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:14:59,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:14:59,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:14:59,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:00,059 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:00,342 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:00,342 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:00,342 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:00,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:00,476 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:15:00,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:15:00,636 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:15:00,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:00,696 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:00,779 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:00,779 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:00,841 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:00,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:00,973 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:00,973 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:01,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:01,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:01,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:01,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:01,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:01,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:01,625 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:01,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:01,696 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:01,697 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:01,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:01,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:01,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:02,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:02,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:02,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:02,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:02,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:02,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:02,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:02,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:02,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:02,699 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:02,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:03,042 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:03,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:03,042 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:03,084 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:03,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:03,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:03,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:03,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:03,720 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:03,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:03,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:03,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:03,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:04,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:04,107 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:04,107 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:04,118 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:04,426 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:04,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:04,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:04,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:04,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:04,725 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:04,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:04,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:04,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:05,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:05,046 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:05,046 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:05,058 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:05,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:05,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:05,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:05,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:05,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:05,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:05,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:05,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:05,725 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:05,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:05,979 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:05,979 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:05,991 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:06,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:06,278 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:06,278 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:06,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:06,607 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:06,607 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:06,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:06,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:06,731 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:06,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:06,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:06,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:06,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:07,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:07,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:07,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:07,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:07,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:07,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:07,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:07,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:07,738 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:07,854 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:07,855 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:07,855 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:07,855 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:07,867 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:08,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:08,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:08,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:08,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:08,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:08,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:08,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:08,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:08,750 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:08,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:08,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:08,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:08,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:09,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:09,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:09,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:09,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:09,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:09,401 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:09,401 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:09,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:09,724 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:09,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:09,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:09,750 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:09,776 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:10,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:10,040 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:10,040 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:10,069 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:10,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:10,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:10,352 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:10,388 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:10,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:10,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:10,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:10,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:10,758 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:10,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:10,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:10,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:11,030 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:11,293 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:11,293 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:11,293 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:11,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:11,596 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:11,596 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:11,596 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:11,615 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:11,764 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:11,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:11,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:11,917 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:11,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:12,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:12,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:12,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:12,236 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:12,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:12,528 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:12,528 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:12,547 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:12,783 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:12,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:12,850 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:12,850 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:12,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:12,863 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:13,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:13,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:13,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:13,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:13,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:13,474 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:13,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:13,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:13,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:13,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:13,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:13,793 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:13,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:14,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:14,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:14,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:14,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:14,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:14,401 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:14,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:14,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:14,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:14,704 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:14,704 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:14,725 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:14,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:15,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:15,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:15,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:15,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:15,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:15,335 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:15,335 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:15,347 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:15,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:15,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:15,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:15,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:15:15,654 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:15,654 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:15:15,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:15,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:15,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:15,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:15,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:16,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:16,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:16,352 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:16,372 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:16,670 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:16,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:16,671 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:16,682 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:16,805 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:16,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:16,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:16,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:16,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:17,297 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:17,298 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:17,298 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:17,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:17,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:17,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:17,606 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:17,618 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:17,821 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:17,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:17,909 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:17,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:17,910 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:17,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:18,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:18,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:18,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:18,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:18,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:18,518 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:18,518 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:18,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:18,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:18,832 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:18,832 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:18,832 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:18,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:19,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:19,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:19,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:19,182 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:19,454 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:19,454 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:19,454 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:19,502 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:19,781 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:19,781 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:19,782 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:19,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:19,832 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:20,087 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:20,087 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:20,087 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:20,134 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:20,412 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:20,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:20,413 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:20,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:20,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:20,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:20,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:20,834 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:20,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:21,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:21,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:21,194 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:21,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:21,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:21,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:21,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:21,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:21,856 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:21,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:21,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:21,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:22,004 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:22,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:22,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:22,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:22,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:22,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:22,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:22,686 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:22,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:22,861 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:23,048 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:23,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:23,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:23,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:23,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:23,426 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:23,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:23,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:23,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:23,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:23,746 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:23,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:23,797 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:23,867 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:24,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:24,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:24,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:24,122 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:24,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:24,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:24,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:24,444 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:24,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:24,704 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:24,704 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:24,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:24,871 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:25,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:25,092 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:25,092 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:25,147 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:25,511 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:25,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:25,512 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:25,569 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:25,893 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:25,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:25,949 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:25,949 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:25,995 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:26,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:26,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:26,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:26,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:26,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:26,757 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:26,757 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:26,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:26,898 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:27,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:27,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:27,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:27,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:27,394 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:27,394 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:27,394 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:27,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:27,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:27,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:27,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:27,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:27,905 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:28,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:28,024 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:28,024 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:28,072 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:28,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:28,339 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:28,339 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:28,340 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:28,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:28,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:28,657 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:28,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:28,687 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:28,917 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:28,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:28,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:28,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:28,995 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:29,263 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:29,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:29,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:29,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:29,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:29,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:29,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:29,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:29,887 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:29,887 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:29,887 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:29,898 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:29,917 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:30,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:30,190 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:30,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:30,203 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:30,477 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:15:30,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:30,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:30,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:30,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:30,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:15:30,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:15:30,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:30,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:30,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:30,812 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:30,925 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:31,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:31,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:31,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:31,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:31,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:31,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:31,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:31,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:31,733 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:31,733 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:31,733 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:31,748 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:31,940 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:32,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:32,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:32,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:32,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:32,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:32,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:32,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:32,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:32,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:32,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:32,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:32,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:32,952 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:32,964 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:32,964 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:32,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:32,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:33,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:33,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:33,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:33,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:33,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:33,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:33,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:33,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:33,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:33,894 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:33,894 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:33,894 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:33,913 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:33,952 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:34,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:34,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:34,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:34,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:34,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:34,521 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:34,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:34,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:34,828 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:34,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:34,829 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:34,841 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:34,959 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:35,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:35,133 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:35,133 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:35,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:35,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:35,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:35,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:35,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:35,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:35,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:35,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:35,761 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:35,977 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:36,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:36,056 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:36,056 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:36,068 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:36,364 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:36,364 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:36,365 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:36,376 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:36,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:36,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:36,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:36,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:36,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:36,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:36,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:36,991 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:36,995 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:37,296 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:37,297 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:37,297 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:37,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:37,607 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:37,615 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:37,615 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:37,621 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:37,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:37,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:37,917 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:37,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:37,991 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:38,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:38,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:38,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:38,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:38,541 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:38,542 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:38,542 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:38,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:38,584 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:38,854 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:38,855 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:38,855 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:38,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:38,997 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:39,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:39,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:39,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:39,208 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:39,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:39,485 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:39,485 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:39,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:39,796 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:39,796 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:39,796 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:39,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:40,010 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:40,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:40,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:40,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:40,150 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:40,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:40,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:40,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:40,434 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:40,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:40,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:40,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:40,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:41,023 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:41,074 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:41,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:41,075 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:41,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:41,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:41,383 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:41,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:41,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:41,692 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:41,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:41,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:41,739 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:42,001 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:42,001 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:42,001 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:42,023 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:42,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:42,298 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:42,298 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:42,298 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:42,345 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:42,630 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:42,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:42,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:42,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:42,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:42,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:42,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:42,990 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:43,028 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:43,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:43,244 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:43,244 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:43,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:43,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:43,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:43,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:43,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:43,613 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:43,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:43,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:43,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:43,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:44,034 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:44,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:44,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:44,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:44,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:44,540 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:44,541 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:44,541 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:44,594 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:44,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:44,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:44,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:44,992 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:45,038 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:45,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:45,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:45,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:45,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:45,575 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:45,576 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:45,576 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:45,630 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:45,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:15:45,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:15:45,900 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:45,900 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:45,900 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:45,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:46,042 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:46,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:46,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:46,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:46,275 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:46,658 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:46,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:46,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:46,699 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:47,064 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:47,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:47,064 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:47,064 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:47,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:47,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:47,488 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:47,488 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:47,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:47,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:47,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:47,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:47,940 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:48,058 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:48,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:48,209 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:48,209 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:48,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:48,520 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:48,520 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:48,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:48,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:48,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:48,835 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:48,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:48,835 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:48,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:49,077 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:49,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:49,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:49,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:49,156 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:49,458 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:49,459 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:49,459 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:49,471 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:49,769 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:49,770 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:49,770 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:49,781 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:50,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:50,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:50,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:50,087 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:50,090 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:50,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:50,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:50,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:50,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:50,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:50,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:50,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:50,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:50,977 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:50,977 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:50,977 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:50,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:51,092 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:51,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:51,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:51,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:51,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:51,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:51,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:51,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:51,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:51,911 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:51,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:51,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:51,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:52,097 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:52,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:52,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:52,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:52,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:52,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:52,531 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:52,531 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:52,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:52,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:52,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:52,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:52,872 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:53,109 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:53,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:53,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:53,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:53,175 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:53,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:53,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:53,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:53,488 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:53,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:53,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:53,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:53,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:54,095 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:54,095 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:54,095 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:54,095 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:54,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:54,114 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:54,415 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:54,415 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:54,415 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:54,427 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:54,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:54,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:54,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:54,739 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:55,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:55,046 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:55,046 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:55,059 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:55,115 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:55,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:55,354 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:55,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:55,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:55,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:55,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:55,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:55,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:55,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:55,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:55,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:56,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:56,121 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:56,298 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:56,298 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:56,298 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:56,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:56,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:56,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:56,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:56,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:56,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:56,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:56,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:57,058 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:57,125 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:57,319 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:57,319 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:57,319 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:57,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:57,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:57,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:57,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:57,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:58,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:58,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:58,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:58,105 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:58,135 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:58,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:58,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:58,413 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:58,485 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:58,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:58,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:58,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:58,812 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:59,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:59,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:59,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:59,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:15:59,136 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:15:59,161 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:59,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:59,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:59,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:59,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:15:59,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:15:59,723 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:15:59,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:15:59,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:00,083 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:00,083 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:00,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:00,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:00,150 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:00,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:00,412 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:00,412 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:00,460 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:00,478 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:16:00,647 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:16:00,647 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:16:00,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:00,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:00,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:00,835 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:01,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:01,032 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:01,032 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:01,057 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:01,161 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:01,368 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:01,368 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:01,368 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:01,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:01,676 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:01,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:01,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:01,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:01,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:01,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:01,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:01,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:02,168 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:02,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:02,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:02,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:02,312 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:02,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:02,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:02,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:02,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:02,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:02,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:02,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:02,950 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:03,189 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:03,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:03,234 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:03,234 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:03,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:03,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:03,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:03,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:03,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:03,853 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:03,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:03,854 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:03,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:04,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:04,163 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:04,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:04,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:04,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:04,189 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:04,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:04,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:04,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:04,490 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:04,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:04,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:04,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:04,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:05,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:05,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:05,113 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:05,163 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:05,194 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:05,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:05,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:05,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:05,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:05,766 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:05,767 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:05,767 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:05,815 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:06,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:06,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:06,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:06,131 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:06,200 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:06,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:06,401 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:06,401 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:06,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:06,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:06,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:06,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:06,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:07,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:07,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:07,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:07,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:07,207 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:07,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:07,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:07,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:07,392 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:07,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:07,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:07,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:07,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:08,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:08,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:08,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:08,207 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:08,237 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:08,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:08,590 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:08,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:08,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:08,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:08,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:08,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:08,996 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:09,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:09,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:09,289 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:09,289 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:09,289 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:09,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:09,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:09,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:09,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:09,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:09,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:09,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:09,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:09,914 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:10,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:10,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:10,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:10,220 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:10,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:10,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:10,519 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:10,519 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:10,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:10,837 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:10,837 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:10,838 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:10,849 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:11,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:11,148 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:11,148 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:11,161 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:11,220 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:11,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:11,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:11,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:11,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:11,772 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:11,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:11,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:11,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:12,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:12,083 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:12,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:12,095 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:12,227 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:12,393 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:12,394 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:12,394 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:12,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:12,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:12,691 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:12,691 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:12,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:13,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:13,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:13,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:13,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:13,237 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:13,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:13,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:13,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:13,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:13,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:13,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:13,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:13,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:13,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:13,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:13,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:13,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:14,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:14,247 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:14,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:14,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:14,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:14,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:14,571 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:14,571 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:14,571 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:14,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:14,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:14,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:14,924 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:14,956 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:15,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:15,238 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:15,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:15,256 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:15,264 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:15,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:15,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:15,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:15,574 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:15,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:16:15,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:16:15,868 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:15,868 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:15,868 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:15,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:16,178 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:16,178 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:16,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:16,199 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:16,261 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:16,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:16,518 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:16,518 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:16,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:16,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:16,836 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:16,837 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:16,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:17,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:17,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:17,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:17,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:17,265 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:17,454 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:17,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:17,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:17,488 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:17,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:17,761 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:17,761 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:17,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:18,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:18,076 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:18,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:18,101 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:18,273 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:18,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:18,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:18,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:18,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:18,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:18,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:18,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:18,702 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:19,003 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:19,004 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:19,004 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:19,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:19,285 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:19,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:19,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:19,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:19,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:19,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:19,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:19,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:19,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:19,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:19,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:19,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:19,937 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:19,950 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:20,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:20,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:20,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:20,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:20,285 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:20,563 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:20,563 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:20,563 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:20,576 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:20,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:20,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:20,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:20,889 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:21,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:21,176 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:21,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:21,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:21,291 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:21,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:21,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:21,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:21,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:21,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:21,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:21,810 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:21,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:22,123 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:22,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:22,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:22,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:22,298 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:22,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:22,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:22,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:22,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:22,733 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:22,733 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:22,733 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:22,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:23,048 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:23,048 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:23,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:23,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:23,310 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:23,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:23,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:23,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:23,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:23,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:23,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:23,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:23,675 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:23,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:23,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:23,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:23,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:24,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:24,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:24,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:24,291 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:24,310 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:24,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:24,590 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:24,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:24,603 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:24,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:24,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:24,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:24,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:24,915 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:25,212 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:25,212 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:25,212 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:25,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:25,315 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:25,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:25,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:25,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:25,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:25,861 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:25,861 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:25,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:25,901 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:26,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:26,181 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:26,181 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:26,231 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:26,323 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:26,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:26,504 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:26,504 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:26,564 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:26,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:26,832 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:26,832 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:26,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:27,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:27,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:27,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:27,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:27,329 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:27,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:27,476 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:27,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:27,526 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:27,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:27,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:27,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:27,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:28,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:28,140 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:28,140 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:28,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:28,330 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:28,514 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:28,514 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:28,514 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:28,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:28,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:28,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:28,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:28,984 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:29,333 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:29,333 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:29,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:29,341 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:29,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:29,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:29,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:29,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:29,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:30,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:30,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:30,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:30,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:30,216 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:30,350 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:30,479 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:16:30,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:30,590 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:30,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:30,643 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:30,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:16:30,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:16:30,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:30,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:30,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:30,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:31,211 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:31,212 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:31,212 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:31,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:31,355 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:31,511 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:31,511 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:31,511 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:31,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:31,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:31,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:31,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:31,851 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:32,150 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:32,150 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:32,151 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:32,166 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:32,369 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:32,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:32,449 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:32,450 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:32,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:32,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:32,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:32,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:32,801 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:33,088 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:33,088 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:33,088 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:33,120 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:33,381 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:33,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:33,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:33,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:33,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:33,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:33,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:33,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:33,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:34,007 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:34,007 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:34,007 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:34,062 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:34,325 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:34,325 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:34,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:34,370 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:34,381 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:34,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:34,635 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:34,635 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:34,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:34,937 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:34,937 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:34,937 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:34,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:35,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:35,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:35,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:35,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:35,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:35,387 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:35,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:35,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:35,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:35,580 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:35,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:35,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:35,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:35,888 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:36,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:36,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:36,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:36,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:36,403 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:36,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:36,493 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:36,493 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:36,504 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:36,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:36,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:36,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:36,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:37,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:37,106 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:37,106 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:37,120 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:37,408 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:37,408 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:37,408 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:37,408 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:37,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:37,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:37,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:37,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:37,739 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:38,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:38,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:38,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:38,052 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:38,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:38,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:38,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:38,360 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:38,408 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:38,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:38,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:38,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:38,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:38,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:38,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:38,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:38,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:39,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:39,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:39,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:39,295 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:39,416 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:39,596 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:39,597 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:39,597 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:39,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:39,904 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:39,905 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:39,905 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:39,918 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:40,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:40,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:40,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:40,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:40,431 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:40,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:40,531 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:40,531 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:40,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:40,543 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:40,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:40,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:40,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:40,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:41,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:41,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:41,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:41,159 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:41,443 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:41,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:41,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:41,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:41,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:41,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:41,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:41,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:41,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:42,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:42,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:42,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:42,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:42,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:42,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:42,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:42,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:42,443 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:42,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:42,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:42,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:42,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:43,024 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:43,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:43,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:43,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:43,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:43,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:43,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:43,347 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:43,448 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:43,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:43,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:43,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:43,657 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:43,945 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:43,945 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:43,945 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:43,974 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:44,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:44,266 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:44,266 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:44,294 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:44,454 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:44,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:44,581 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:44,581 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:44,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:44,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:44,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:44,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:44,992 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:45,253 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:45,253 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:45,253 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:45,310 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:45,461 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:45,573 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:45,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:45,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:45,573 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:45,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:45,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:16:45,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:16:45,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:45,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:45,885 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:45,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:46,187 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:46,187 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:46,187 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:46,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:46,478 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:46,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:46,506 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:46,506 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:46,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:46,898 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:46,898 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:46,898 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:46,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:47,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:47,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:47,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:47,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:47,490 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:47,552 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:47,552 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:47,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:47,596 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:47,868 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:47,868 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:47,868 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:47,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:48,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:48,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:48,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:48,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:48,502 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:48,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:48,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:48,537 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:48,592 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:48,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:48,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:48,880 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:48,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:49,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:49,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:49,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:49,251 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:49,514 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:49,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:49,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:49,537 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:49,588 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:49,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:49,926 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:49,926 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:49,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:50,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:50,366 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:50,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:50,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:50,521 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:50,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:50,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:50,810 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:50,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:50,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:51,265 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:51,275 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:51,275 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:51,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:51,534 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:51,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:51,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:51,680 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:51,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:52,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:52,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:52,069 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:52,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:52,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:52,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:52,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:52,543 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:52,580 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:52,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:52,848 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:52,848 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:52,899 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:53,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:53,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:53,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:53,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:53,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:53,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:53,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:53,529 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:53,543 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:53,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:53,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:53,781 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:53,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:54,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:54,079 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:54,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:54,100 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:54,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:54,391 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:54,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:54,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:54,549 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:54,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:54,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:54,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:54,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:55,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:55,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:55,026 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:55,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:55,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:55,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:55,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:55,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:55,571 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:55,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:55,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:55,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:55,659 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:55,951 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:55,951 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:55,951 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:55,951 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:16:55,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:56,270 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:56,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:56,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:56,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:56,585 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:56,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:56,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:56,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:56,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:56,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:56,893 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:56,894 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:56,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:57,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:57,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:57,201 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:57,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:57,500 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:57,500 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:57,500 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:57,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:57,576 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:57,819 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:57,820 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:57,820 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:57,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:58,129 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:58,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:58,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:58,141 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:58,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:58,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:58,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:58,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:58,582 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:58,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:58,737 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:58,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:58,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:59,061 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:59,062 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:59,062 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:59,095 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:59,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:59,372 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:59,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:59,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:59,597 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:16:59,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:59,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:59,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:16:59,722 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:16:59,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:16:59,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:16:59,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:00,030 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:00,319 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:00,320 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:00,320 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:00,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:00,481 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:17:00,617 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:00,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:00,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:00,630 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:00,648 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:00,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:17:00,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:17:00,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:00,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:00,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:00,955 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:00,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:01,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:01,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:01,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:01,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:01,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:01,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:01,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:01,584 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:01,617 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:01,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:01,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:01,890 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:01,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:02,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:02,201 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:02,201 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:02,214 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:02,509 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:02,510 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:02,510 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:02,523 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:02,623 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:02,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:02,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:02,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:02,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:03,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:03,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:03,142 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:03,153 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:03,458 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:03,458 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:03,458 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:03,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:03,627 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:03,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:03,772 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:03,772 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:03,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:04,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:04,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:04,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:04,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:04,408 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:04,408 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:04,408 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:04,420 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:04,632 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:04,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:04,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:04,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:04,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:05,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:05,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:05,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:05,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:05,348 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:05,349 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:05,349 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:05,361 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:05,644 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:05,658 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:05,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:05,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:05,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:05,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:05,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:05,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:05,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:05,980 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:06,281 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:06,281 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:06,282 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:06,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:06,601 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:06,602 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:06,602 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:06,614 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:06,644 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:06,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:06,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:06,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:06,918 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:07,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:07,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:07,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:07,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:07,517 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:07,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:07,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:07,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:07,649 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:07,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:07,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:07,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:07,857 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:08,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:08,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:08,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:08,169 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:08,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:08,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:08,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:08,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:08,654 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:08,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:08,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:08,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:08,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:09,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:09,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:09,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:09,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:09,409 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:09,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:09,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:09,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:09,666 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:09,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:09,723 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:09,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:09,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:10,088 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:10,088 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:10,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:10,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:10,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:10,505 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:10,505 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:10,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:10,673 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:10,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:10,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:10,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:10,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:11,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:11,276 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:11,276 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:11,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:11,338 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:11,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:11,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:11,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:11,674 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:11,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:12,035 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:12,035 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:12,035 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:12,103 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:12,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:12,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:12,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:12,494 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:12,680 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:12,806 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:12,806 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:12,806 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:12,884 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:13,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:13,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:13,194 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:13,277 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:13,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:13,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:13,582 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:13,675 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:13,687 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:13,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:13,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:13,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:14,015 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:14,342 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:14,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:14,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:14,395 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:14,722 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:14,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:14,902 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:14,902 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:14,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:15,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:15,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:15,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:15,526 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:15,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:17:15,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:17:15,730 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:16,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:16,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:16,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:16,104 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:16,578 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:16,578 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:16,579 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:16,579 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:16,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:16,735 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:17,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:17,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:17,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:17,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:17,657 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:17,657 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:17,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:17,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:17,742 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:18,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:18,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:18,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:18,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:18,478 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:18,478 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:18,478 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:18,517 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:18,754 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:18,790 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:18,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:18,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:18,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:19,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:19,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:19,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:19,150 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:19,422 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:19,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:19,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:19,455 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:19,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:19,735 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:19,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:19,754 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:19,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:20,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:20,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:20,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:20,055 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:20,349 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:20,349 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:20,349 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:20,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:20,671 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:20,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:20,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:20,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:20,760 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:20,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:20,985 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:20,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:21,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:21,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:21,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:21,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:21,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:21,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:21,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:21,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:21,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:21,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:21,766 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:21,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:21,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:21,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:21,936 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:22,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:22,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:22,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:22,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:22,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:22,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:22,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:22,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:22,784 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:22,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:22,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:22,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:22,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:23,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:23,170 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:23,170 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:23,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:23,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:23,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:23,483 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:23,494 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:23,795 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:23,796 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:23,796 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:23,796 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:23,808 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:24,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:24,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:24,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:24,117 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:24,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:24,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:24,419 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:24,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:24,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:24,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:24,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:24,748 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:24,786 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:25,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:25,047 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:25,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:25,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:25,358 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:25,359 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:25,359 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:25,371 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:25,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:25,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:25,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:25,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:25,792 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:25,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:25,991 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:25,991 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:26,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:26,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:26,307 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:26,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:26,319 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:26,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:26,616 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:26,616 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:26,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:26,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:26,797 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:26,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:26,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:26,924 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:26,936 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:27,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:27,238 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:27,238 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:27,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:27,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:27,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:27,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:27,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:27,808 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:27,868 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:27,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:27,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:27,881 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:28,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:28,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:28,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:28,193 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:28,494 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:28,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:28,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:28,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:28,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:28,804 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:28,804 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:28,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:28,813 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:29,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:29,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:29,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:29,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:29,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:29,425 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:29,425 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:29,437 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:29,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:29,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:29,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:29,748 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:29,821 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:30,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:30,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:30,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:30,074 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:30,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:30,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:30,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:30,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:30,484 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:17:30,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:17:30,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:17:30,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:30,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:30,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:30,793 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:30,828 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:30,995 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:30,995 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:30,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:31,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:31,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:31,313 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:31,313 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:31,325 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:31,630 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:31,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:31,630 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:31,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:31,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:31,842 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:31,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:31,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:31,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:31,961 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:32,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:32,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:32,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:32,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:32,576 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:32,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:32,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:32,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:32,854 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:32,900 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:32,900 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:32,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:32,965 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:33,231 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:33,232 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:33,232 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:33,295 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:33,554 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:33,555 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:33,555 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:33,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:33,864 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:33,865 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:33,865 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:33,865 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:33,929 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:34,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:34,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:34,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:34,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:34,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:34,466 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:34,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:34,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:34,524 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:34,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:34,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:34,581 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:34,770 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:34,770 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:34,770 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:34,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:34,872 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:35,197 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:35,198 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:35,198 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:35,280 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:35,606 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:35,607 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:35,607 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:35,699 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:35,877 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:36,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:36,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:36,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:36,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:36,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:36,485 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:36,485 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:36,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:36,889 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:36,950 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:36,950 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:36,951 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:36,951 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:37,034 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:37,356 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:37,356 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:37,356 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:37,433 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:37,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:37,723 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:37,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:37,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:37,894 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:38,101 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:38,102 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:38,102 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:38,158 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:38,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:38,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:38,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:38,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:38,903 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:38,938 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:38,938 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:38,938 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:39,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:39,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:39,346 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:39,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:39,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:39,778 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:39,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:39,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:39,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:39,907 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:40,205 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:40,205 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:40,205 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:40,291 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:40,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:40,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:40,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:40,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:40,918 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:40,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:40,949 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:40,949 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:41,013 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:41,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:41,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:41,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:41,429 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:41,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:41,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:41,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:41,826 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:41,922 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:42,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:42,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:42,188 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:42,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:42,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:42,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:42,523 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:42,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:42,535 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:42,832 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:42,832 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:42,832 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:42,844 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:42,929 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:43,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:43,145 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:43,145 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:43,156 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:43,446 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:43,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:43,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:43,465 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:43,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:43,761 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:43,761 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:43,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:43,932 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:44,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:44,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:44,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:44,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:44,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:44,389 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:44,389 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:44,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:44,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:44,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:44,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:44,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:44,950 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:45,007 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:45,007 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:45,007 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:45,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:45,333 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:45,333 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:45,333 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:45,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:45,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:45,648 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:45,648 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:45,657 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:17:45,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:45,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:17:45,963 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:45,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:45,964 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:45,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:45,976 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:46,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:46,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:46,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:46,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:46,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:46,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:46,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:46,596 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:46,899 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:46,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:46,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:46,910 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:46,954 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:47,314 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:47,314 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:47,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:47,315 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:47,326 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:47,617 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:47,617 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:47,617 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:47,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:47,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:47,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:47,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:47,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:47,955 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:48,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:48,246 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:48,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:48,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:48,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:48,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:48,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:48,568 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:48,863 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:48,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:48,863 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:48,875 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:48,961 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:49,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:49,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:49,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:49,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:49,488 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:49,488 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:49,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:49,515 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:49,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:49,799 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:49,799 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:49,826 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:49,968 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:50,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:50,113 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:50,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:50,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:50,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:50,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:50,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:50,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:50,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:50,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:50,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:50,793 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:50,980 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:51,069 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:51,069 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:51,069 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:51,103 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:51,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:51,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:51,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:51,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:51,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:51,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:51,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:51,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:51,992 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:52,016 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:52,016 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:52,016 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:52,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:52,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:52,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:52,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:52,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:52,341 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:52,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:52,631 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:52,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:52,650 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:52,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:52,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:52,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:52,968 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:52,992 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:53,270 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:53,270 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:53,270 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:53,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:53,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:53,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:53,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:53,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:53,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:53,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:53,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:53,920 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:54,001 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:54,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:54,213 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:54,213 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:54,223 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:54,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:54,531 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:54,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:54,545 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:54,847 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:54,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:54,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:54,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:55,007 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:55,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:55,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:55,158 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:55,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:55,473 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:55,473 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:55,473 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:55,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:55,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:55,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:55,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:55,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:56,016 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:56,093 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:56,093 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:56,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:56,121 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:56,403 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:56,403 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:56,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:56,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:56,726 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:56,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:56,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:56,777 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:57,028 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:57,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:57,040 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:57,040 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:57,095 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:57,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:57,353 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:57,353 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:57,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:17:57,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:57,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:57,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:57,670 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:57,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:57,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:57,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:57,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:57,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:58,028 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:58,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:58,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:58,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:58,305 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:58,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:58,595 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:58,595 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:58,614 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:58,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:58,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:58,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:58,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:59,033 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:17:59,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:59,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:59,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:59,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:59,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:59,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:59,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:59,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:17:59,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:17:59,890 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:17:59,890 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:17:59,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:00,041 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:00,246 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:00,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:00,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:00,306 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:00,484 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:18:00,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:00,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:00,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:00,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:00,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:18:00,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:18:00,921 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:00,922 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:00,922 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:00,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:01,048 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:01,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:01,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:01,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:01,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:01,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:01,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:01,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:01,629 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:01,901 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:01,901 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:01,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:01,961 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:02,051 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:02,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:02,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:02,291 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:02,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:02,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:02,649 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:02,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:02,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:02,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:03,031 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:03,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:03,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:03,053 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:03,090 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:03,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:03,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:03,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:03,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:03,767 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:03,767 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:03,767 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:03,779 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:04,065 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:04,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:04,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:04,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:04,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:04,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:04,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:04,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:04,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:04,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:04,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:04,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:04,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:05,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:05,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:05,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:05,065 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:05,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:05,332 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:05,332 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:05,332 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:05,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:05,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:05,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:05,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:05,705 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:05,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:05,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:05,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:06,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:06,072 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:06,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:06,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:06,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:06,305 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:06,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:06,596 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:06,596 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:06,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:06,905 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:06,905 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:06,905 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:06,915 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:07,076 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:07,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:07,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:07,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:07,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:07,533 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:07,533 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:07,533 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:07,545 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:07,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:07,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:07,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:07,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:07,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:08,085 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:08,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:08,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:08,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:08,171 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:08,470 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:08,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:08,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:08,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:08,781 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:08,781 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:08,781 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:08,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:09,094 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:09,094 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:09,094 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:09,102 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:09,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:09,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:09,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:09,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:09,414 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:09,703 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:09,703 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:09,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:09,721 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:10,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:10,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:10,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:10,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:10,110 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:10,333 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:10,333 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:10,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:10,345 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:10,647 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:10,647 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:10,647 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:10,659 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:10,960 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:10,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:10,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:10,972 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:11,116 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:11,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:11,278 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:11,278 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:11,290 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:11,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:11,588 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:11,588 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:11,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:11,899 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:11,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:11,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:11,911 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:12,133 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:12,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:12,209 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:12,209 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:12,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:12,517 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:12,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:12,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:12,531 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:12,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:12,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:12,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:12,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:13,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:13,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:13,142 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:13,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:13,149 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:13,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:13,460 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:13,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:13,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:13,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:13,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:13,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:13,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:13,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:14,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:14,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:14,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:14,137 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:14,150 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:14,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:14,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:14,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:14,457 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:14,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:14,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:14,724 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:14,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:15,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:15,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:15,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:15,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:15,155 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:15,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:15,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:15,352 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:15,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:15,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:15,655 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:15,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:15,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:18:15,675 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:15,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:18:15,976 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:15,977 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:15,977 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:15,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:16,160 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:16,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:16,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:16,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:16,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:16,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:16,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:16,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:16,618 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:16,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:16,909 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:16,909 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:16,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:17,172 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:17,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:17,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:17,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:17,234 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:17,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:17,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:17,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:17,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:17,921 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:17,922 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:17,922 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:17,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:18,184 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:18,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:18,237 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:18,237 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:18,237 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:18,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:18,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:18,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:18,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:18,577 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:18,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:18,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:18,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:18,893 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:19,197 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:19,197 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:19,197 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:19,197 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:19,226 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:19,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:19,505 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:19,506 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:19,549 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:19,819 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:19,820 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:19,820 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:19,870 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:20,130 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:20,130 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:20,130 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:20,184 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:20,192 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:20,488 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:20,489 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:20,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:20,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:20,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:20,813 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:20,813 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:20,877 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:21,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:21,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:21,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:21,199 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:21,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:21,566 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:21,567 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:21,567 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:21,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:21,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:21,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:21,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:22,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:22,205 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:22,323 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:22,323 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:22,324 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:22,385 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:22,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:22,727 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:22,727 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:22,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:23,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:23,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:23,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:23,168 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:23,209 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:23,444 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:23,445 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:23,445 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:23,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:23,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:23,769 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:23,769 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:23,769 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:23,826 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:24,088 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:24,088 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:24,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:24,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:24,212 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:24,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:24,414 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:24,414 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:24,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:24,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:24,811 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:24,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:24,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:25,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:25,192 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:25,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:25,213 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:25,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:25,558 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:25,558 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:25,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:25,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:25,889 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:25,889 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:25,889 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:25,920 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:26,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:26,211 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:26,211 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:26,219 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:26,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:26,516 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:26,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:26,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:26,528 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:26,826 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:26,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:26,827 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:26,840 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:27,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:27,140 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:27,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:27,152 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:27,222 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:27,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:27,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:27,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:27,460 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:27,767 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:27,767 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:27,767 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:27,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:28,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:28,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:28,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:28,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:28,226 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:28,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:28,391 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:28,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:28,403 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:28,692 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:28,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:28,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:28,692 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:28,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:29,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:29,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:29,014 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:29,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:29,227 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:29,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:29,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:29,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:29,339 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:29,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:29,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:29,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:29,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:29,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:29,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:29,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:29,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:30,238 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:30,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:30,267 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:30,267 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:30,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:30,489 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:18:30,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:30,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:30,568 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:30,586 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:30,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:18:30,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:18:30,894 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:30,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:30,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:30,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:31,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:31,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:31,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:31,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:31,238 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:31,510 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:31,510 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:31,510 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:31,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:31,840 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:31,840 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:31,840 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:31,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:32,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:32,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:32,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:32,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:32,243 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:32,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:32,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:32,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:32,514 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:32,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:32,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:32,784 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:32,838 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:33,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:33,093 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:33,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:33,141 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:33,247 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:33,403 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:33,403 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:33,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:33,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:33,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:33,718 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:33,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:33,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:33,734 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:34,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:34,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:34,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:34,042 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:34,252 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:34,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:34,339 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:34,339 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:34,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:34,652 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:34,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:34,652 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:34,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:34,963 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:34,964 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:34,964 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:34,978 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:35,256 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:35,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:35,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:35,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:35,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:35,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:35,596 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:35,596 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:35,639 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:35,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:35,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:35,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:35,950 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:36,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:36,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:36,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:36,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:36,256 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:36,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:36,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:36,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:36,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:36,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:36,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:36,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:36,902 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:37,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:37,169 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:37,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:37,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:37,262 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:37,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:37,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:37,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:37,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:37,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:37,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:37,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:37,808 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:38,104 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:38,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:38,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:38,119 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:38,265 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:38,416 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:38,417 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:38,417 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:38,432 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:38,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:38,729 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:38,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:38,729 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:38,741 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:39,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:39,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:39,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:39,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:39,279 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:39,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:39,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:39,352 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:39,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:39,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:39,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:39,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:39,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:39,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:39,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:39,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:39,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:40,283 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:40,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:40,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:40,291 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:40,296 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:40,596 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:40,597 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:40,597 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:40,609 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:40,910 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:40,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:40,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:40,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:41,212 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:41,212 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:41,212 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:41,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:41,292 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:41,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:41,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:41,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:41,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:41,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:41,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:41,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:41,864 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:42,166 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:42,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:42,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:42,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:42,299 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:42,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:42,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:42,484 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:42,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:42,807 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:42,807 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:42,807 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:42,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:43,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:43,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:43,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:43,196 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:43,305 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:43,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:43,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:43,484 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:43,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:43,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:43,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:43,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:43,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:43,867 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:44,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:44,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:44,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:44,217 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:44,309 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:44,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:44,493 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:44,493 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:44,549 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:44,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:44,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:44,878 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:44,926 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:45,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:45,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:45,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:45,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:45,317 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:45,620 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:45,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:45,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:45,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:18:45,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:45,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:18:46,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:46,060 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:46,060 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:46,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:46,325 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:46,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:46,491 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:46,491 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:46,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:46,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:46,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:46,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:46,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:47,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:47,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:47,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:47,163 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:47,329 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:47,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:47,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:47,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:47,481 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:47,827 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:47,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:47,827 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:47,839 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:48,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:48,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:48,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:48,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:48,334 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:48,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:48,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:48,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:48,469 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:48,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:48,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:48,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:48,807 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:49,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:49,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:49,075 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:49,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:49,116 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:49,346 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:49,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:49,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:49,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:49,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:49,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:49,701 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:49,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:49,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:50,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:50,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:50,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:50,056 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:50,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:50,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:50,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:50,346 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:50,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:50,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:50,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:50,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:50,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:50,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:50,962 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:50,962 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:50,978 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:51,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:51,276 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:51,276 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:51,299 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:51,347 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:51,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:51,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:51,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:51,610 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:51,901 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:51,901 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:51,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:51,948 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:52,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:52,209 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:52,209 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:52,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:52,354 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:52,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:52,536 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:52,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:52,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:52,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:52,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:52,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:52,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:53,173 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:53,174 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:53,174 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:53,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:53,359 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:53,486 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:53,486 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:53,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:53,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:53,793 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:53,793 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:53,793 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:53,812 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:54,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:54,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:54,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:54,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:54,122 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:54,365 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:54,423 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:54,423 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:54,423 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:54,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:54,734 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:54,734 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:54,734 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:54,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:55,046 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:55,046 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:55,046 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:55,058 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:55,357 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:55,358 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:55,358 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:55,366 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:55,369 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:55,666 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:55,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:55,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:55,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:55,978 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:55,978 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:55,978 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:55,990 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:56,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:56,282 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:56,282 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:56,301 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:56,367 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:56,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:56,602 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:56,602 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:56,614 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:56,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:56,913 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:56,913 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:56,925 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:57,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:57,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:57,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:57,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:57,372 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:57,533 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:57,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:57,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:57,546 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:57,841 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:57,842 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:57,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:57,854 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:58,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:58,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:58,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:58,173 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:58,377 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:58,472 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:58,473 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:58,473 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:58,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:58,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:58,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:58,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:58,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:59,095 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:59,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:59,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:59,109 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:59,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:18:59,389 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:18:59,403 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:59,403 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:59,404 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:59,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:18:59,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:18:59,719 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:18:59,719 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:18:59,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:00,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:00,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:00,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:00,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:00,360 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:00,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:00,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:00,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:00,390 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:00,490 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:19:00,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:00,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:00,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:00,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:19:00,687 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:00,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:19:00,997 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:00,998 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:00,998 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:01,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:01,315 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:01,315 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:01,315 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:01,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:01,397 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:01,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:01,630 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:01,630 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:01,643 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:01,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:01,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:01,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:01,961 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:02,263 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:02,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:02,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:02,277 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:02,401 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:02,578 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:02,579 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:02,579 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:02,590 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:02,882 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:02,882 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:02,882 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:02,901 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:03,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:03,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:03,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:03,214 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:03,407 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:03,511 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:03,511 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:03,511 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:03,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:03,841 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:03,842 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:03,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:03,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:04,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:04,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:04,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:04,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:04,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:04,419 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:04,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:04,484 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:04,484 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:04,540 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:04,809 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:04,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:04,810 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:04,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:05,131 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:05,132 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:05,132 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:05,199 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:05,431 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:05,456 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:05,456 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:05,456 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:05,531 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:05,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:05,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:05,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:05,882 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:06,127 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:06,127 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:06,128 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:06,213 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:06,447 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:06,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:06,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:06,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:06,565 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:06,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:06,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:06,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:06,898 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:07,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:07,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:07,158 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:07,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:07,459 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:07,512 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:07,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:07,512 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:07,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:07,864 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:07,865 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:07,865 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:07,948 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:08,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:08,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:08,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:08,289 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:08,481 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:08,558 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:08,558 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:08,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:08,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:08,921 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:08,921 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:08,921 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:08,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:09,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:09,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:09,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:09,346 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:09,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:09,490 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:09,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:09,754 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:09,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:09,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:10,198 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:10,199 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:10,199 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:10,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:10,494 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:10,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:10,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:10,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:10,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:11,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:11,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:11,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:11,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:11,508 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:11,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:11,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:11,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:11,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:12,031 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:12,032 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:12,032 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:12,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:12,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:12,352 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:12,353 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:12,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:12,513 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:12,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:12,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:12,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:12,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:13,107 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:13,108 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:13,108 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:13,157 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:13,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:13,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:13,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:13,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:13,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:13,873 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:13,874 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:13,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:13,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:14,188 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:14,188 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:14,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:14,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:14,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:14,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:14,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:14,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:14,514 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:14,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:14,815 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:14,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:14,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:14,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:15,130 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:15,130 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:15,131 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:15,142 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:15,442 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:15,443 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:15,443 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:15,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:15,516 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:15,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:19:15,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:19:15,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:15,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:15,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:15,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:16,069 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:16,069 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:16,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:16,081 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:16,375 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:16,376 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:16,376 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:16,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:16,522 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:16,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:16,691 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:16,691 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:16,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:17,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:17,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:17,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:17,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:17,317 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:17,317 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:17,317 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:17,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:17,539 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:17,619 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:17,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:17,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:17,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:18,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:18,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:18,014 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:18,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:18,314 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:18,314 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:18,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:18,333 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:18,561 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:18,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:18,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:18,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:18,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:18,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:18,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:18,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:18,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:19,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:19,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:19,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:19,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:19,566 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:19,566 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:19,566 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:19,566 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:19,583 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:19,588 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:19,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:19,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:19,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:19,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:20,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:20,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:20,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:20,216 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:20,519 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:20,520 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:20,520 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:20,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:20,566 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:20,829 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:20,829 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:20,830 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:20,841 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:21,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:21,140 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:21,140 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:21,153 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:21,444 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:21,444 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:21,444 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:21,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:21,572 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:21,767 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:21,768 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:21,768 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:21,782 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:22,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:22,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:22,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:22,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:22,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:22,380 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:22,380 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:22,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:22,575 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:22,698 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:22,699 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:22,699 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:22,714 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:23,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:23,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:23,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:23,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:23,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:23,332 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:23,332 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:23,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:23,591 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:23,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:23,644 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:23,644 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:23,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:23,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:23,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:23,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:23,971 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:24,269 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:24,270 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:24,270 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:24,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:24,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:24,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:24,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:24,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:24,596 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:24,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:24,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:24,902 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:24,902 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:24,914 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:25,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:25,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:25,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:25,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:25,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:25,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:25,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:25,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:25,596 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:25,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:25,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:25,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:25,848 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:26,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:26,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:26,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:26,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:26,470 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:26,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:26,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:26,504 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:26,603 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:26,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:26,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:26,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:26,835 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:27,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:27,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:27,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:27,146 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:27,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:27,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:27,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:27,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:27,607 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:27,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:27,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:27,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:27,782 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:28,048 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:28,048 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:28,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:28,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:28,359 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:28,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:28,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:28,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:28,628 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:28,671 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:28,671 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:28,671 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:28,727 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:29,022 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:29,022 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:29,022 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:29,075 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:29,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:29,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:29,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:29,440 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:29,633 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:29,766 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:29,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:29,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:29,767 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:29,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:30,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:30,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:30,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:30,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:30,499 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:19:30,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:30,542 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:30,542 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:30,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:30,645 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:30,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:19:30,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:19:30,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:30,946 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:30,946 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:31,013 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:31,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:31,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:31,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:31,354 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:31,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:31,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:31,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:31,652 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:31,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:31,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:31,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:31,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:32,052 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:32,334 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:32,334 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:32,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:32,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:32,670 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:32,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:32,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:32,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:32,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:33,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:33,092 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:33,092 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:33,158 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:33,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:33,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:33,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:33,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:33,678 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:34,017 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:34,018 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:34,018 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:34,074 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:34,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:34,466 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:34,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:34,523 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:34,690 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:34,894 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:34,894 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:34,894 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:34,894 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:34,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:35,315 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:35,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:35,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:35,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:35,618 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:35,618 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:35,618 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:35,637 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:35,691 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:35,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:35,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:35,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:35,955 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:36,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:36,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:36,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:36,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:36,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:36,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:36,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:36,586 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:36,698 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:36,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:36,884 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:36,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:36,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:37,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:37,202 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:37,202 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:37,214 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:37,511 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:37,511 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:37,512 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:37,523 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:37,706 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:37,821 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:37,821 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:37,821 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:37,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:38,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:38,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:38,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:38,145 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:38,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:38,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:38,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:38,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:38,727 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:38,767 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:38,767 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:38,767 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:38,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:39,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:39,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:39,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:39,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:39,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:39,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:39,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:39,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:39,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:39,703 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:39,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:39,712 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:39,727 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:40,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:40,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:40,021 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:40,021 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:40,034 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:40,331 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:40,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:40,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:40,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:40,646 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:40,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:40,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:40,683 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:40,736 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:40,960 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:40,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:40,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:40,994 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:41,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:41,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:41,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:41,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:41,585 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:41,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:41,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:41,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:41,741 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:41,898 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:41,898 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:41,898 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:41,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:42,206 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:42,206 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:42,206 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:42,251 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:42,530 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:42,530 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:42,531 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:42,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:42,755 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:42,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:42,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:42,844 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:42,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:43,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:43,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:43,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:43,166 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:43,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:43,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:43,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:43,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:43,767 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:43,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:43,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:43,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:43,788 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:44,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:44,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:44,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:44,109 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:44,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:44,400 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:44,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:44,420 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:44,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:44,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:44,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:44,773 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:44,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:45,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:45,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:45,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:45,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:45,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:45,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:45,342 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:45,342 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:45,354 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:45,649 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:45,649 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:45,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:45,659 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:45,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:19:45,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:19:45,777 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:45,960 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:45,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:45,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:45,973 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:46,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:46,269 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:46,269 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:46,280 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:46,581 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:46,581 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:46,581 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:46,595 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:46,792 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:46,891 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:46,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:46,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:46,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:47,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:47,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:47,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:47,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:47,517 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:47,518 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:47,518 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:47,529 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:47,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:47,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:47,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:47,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:47,835 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:48,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:48,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:48,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:48,227 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:48,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:48,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:48,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:48,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:48,816 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:48,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:48,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:48,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:48,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:49,137 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:49,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:49,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:49,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:49,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:49,457 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:49,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:49,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:49,760 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:49,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:49,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:49,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:49,816 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:50,074 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:50,074 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:50,074 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:50,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:50,104 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:50,399 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:50,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:50,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:50,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:50,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:50,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:50,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:50,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:50,819 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:51,026 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:51,026 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:51,026 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:51,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:51,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:51,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:51,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:51,392 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:51,658 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:51,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:51,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:51,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:51,830 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:51,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:51,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:51,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:52,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:52,371 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:52,371 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:52,371 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:52,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:52,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:52,718 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:52,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:52,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:52,836 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:53,048 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:53,048 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:53,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:53,120 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:53,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:53,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:53,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:53,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:53,694 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:53,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:53,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:53,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:53,840 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:54,015 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:54,016 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:54,016 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:54,075 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:54,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:54,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:54,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:54,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:54,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:54,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:54,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:54,722 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:54,845 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:54,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:54,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:54,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:55,047 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:55,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:55,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:55,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:55,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:19:55,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:55,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:55,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:55,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:55,655 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:55,850 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:55,916 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:55,916 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:55,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:55,976 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:56,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:56,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:56,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:56,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:56,566 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:56,566 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:56,567 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:56,612 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:56,868 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:56,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:56,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:56,885 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:56,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:57,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:57,209 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:57,209 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:57,264 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:57,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:57,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:57,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:57,556 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:57,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:57,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:57,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:57,869 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:57,891 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:58,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:58,192 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:58,192 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:58,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:58,511 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:58,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:58,512 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:58,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:58,829 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:58,830 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:58,830 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:58,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:58,869 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:19:59,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:59,142 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:59,142 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:59,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:59,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:59,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:59,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:59,494 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:59,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:19:59,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:19:59,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:19:59,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:19:59,874 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:00,088 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:00,088 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:00,088 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:00,131 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:00,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:00,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:00,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:00,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:00,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:00,501 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:20:00,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:20:00,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:20:00,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:00,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:00,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:00,838 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:00,884 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:01,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:01,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:01,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:01,046 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:01,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:01,353 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:01,353 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:01,365 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:01,667 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:01,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:01,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:01,680 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:01,887 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:01,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:01,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:01,985 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:01,998 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:02,297 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:02,297 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:02,298 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:02,312 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:02,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:02,612 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:02,612 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:02,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:02,892 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:02,923 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:02,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:02,924 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:02,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:03,240 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:03,241 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:03,241 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:03,254 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:03,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:03,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:03,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:03,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:03,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:03,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:03,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:03,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:03,892 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:04,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:04,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:04,168 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:04,187 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:04,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:04,498 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:04,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:04,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:04,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:04,813 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:04,813 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:04,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:04,897 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:05,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:05,116 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:05,116 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:05,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:05,430 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:05,430 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:05,430 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:05,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:05,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:05,757 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:05,758 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:05,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:05,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:05,902 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:06,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:06,060 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:06,060 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:06,079 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:06,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:06,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:06,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:06,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:06,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:06,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:06,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:06,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:06,908 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:07,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:07,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:07,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:07,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:07,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:07,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:07,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:07,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:07,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:07,638 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:07,638 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:07,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:07,920 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:07,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:07,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:07,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:07,961 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:08,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:08,267 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:08,267 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:08,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:08,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:08,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:08,568 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:08,586 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:08,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:08,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:08,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:08,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:08,920 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:09,205 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:09,206 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:09,206 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:09,219 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:09,516 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:09,516 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:09,516 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:09,528 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:09,820 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:09,820 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:09,820 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:09,839 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:09,925 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:10,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:10,145 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:10,145 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:10,160 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:10,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:10,466 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:10,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:10,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:10,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:10,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:10,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:10,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:10,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:10,933 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:11,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:11,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:11,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:11,138 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:11,394 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:11,394 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:11,394 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:11,453 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:11,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:11,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:11,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:11,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:11,953 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:12,015 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:12,015 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:12,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:12,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:12,334 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:12,334 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:12,334 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:12,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:12,653 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:12,654 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:12,654 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:12,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:12,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:12,959 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:12,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:12,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:12,979 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:13,284 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:13,285 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:13,285 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:13,298 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:13,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:13,595 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:13,595 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:13,610 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:13,905 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:13,905 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:13,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:13,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:13,959 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:14,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:14,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:14,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:14,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:14,533 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:14,533 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:14,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:14,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:14,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:14,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:14,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:14,914 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:14,965 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:15,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:15,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:15,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:15,236 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:15,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:15,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:15,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:15,477 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:15,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:15,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:20:15,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:20:15,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:15,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:15,878 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:15,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:15,974 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:16,288 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:16,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:16,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:16,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:16,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:16,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:16,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:16,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:16,980 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:17,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:17,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:17,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:17,203 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:17,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:17,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:17,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:17,641 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:17,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:17,990 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:17,990 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:17,990 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:18,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:18,408 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:18,409 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:18,409 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:18,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:18,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:18,746 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:18,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:18,808 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:19,008 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:19,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:19,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:19,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:19,133 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:19,419 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:19,420 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:19,420 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:19,479 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:19,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:19,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:19,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:19,812 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:20,015 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:20,146 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:20,147 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:20,147 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:20,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:20,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:20,501 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:20,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:20,502 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:20,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:20,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:20,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:20,885 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:20,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:21,022 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:21,307 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:21,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:21,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:21,336 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:21,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:21,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:21,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:21,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:21,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:21,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:21,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:21,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:22,022 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:22,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:22,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:22,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:22,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:22,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:22,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:22,604 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:22,617 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:22,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:22,909 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:22,909 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:22,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:23,030 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:23,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:23,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:23,237 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:23,251 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:23,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:23,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:23,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:23,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:23,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:23,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:23,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:23,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:24,034 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:24,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:24,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:24,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:24,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:24,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:24,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:24,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:24,490 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:24,793 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:24,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:24,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:24,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:25,053 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:25,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:25,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:25,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:25,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:25,424 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:25,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:25,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:25,437 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:25,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:25,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:25,738 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:25,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:25,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:26,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:26,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:26,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:26,059 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:26,063 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:26,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:26,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:26,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:26,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:26,676 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:26,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:26,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:26,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:26,992 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:26,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:26,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:27,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:27,059 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:27,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:27,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:27,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:27,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:27,610 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:27,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:27,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:27,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:27,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:27,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:27,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:27,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:28,067 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:28,227 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:28,227 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:28,227 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:28,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:28,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:28,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:28,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:28,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:28,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:28,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:28,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:28,860 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:29,072 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:29,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:29,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:29,158 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:29,192 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:29,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:29,466 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:29,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:29,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:29,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:29,787 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:29,787 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:29,847 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:30,084 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:30,110 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:30,132 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:30,132 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:30,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:30,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:30,429 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:30,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:30,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:30,511 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:20:30,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:20:30,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:20:30,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:30,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:30,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:30,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:30,902 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:31,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:31,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:31,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:31,087 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:31,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:31,410 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:31,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:31,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:31,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:31,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:31,764 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:31,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:31,852 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:32,099 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:32,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:32,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:32,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:32,204 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:32,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:32,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:32,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:32,514 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:32,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:32,777 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:32,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:32,819 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:33,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:33,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:33,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:33,099 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:33,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:33,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:33,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:33,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:33,445 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:33,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:33,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:33,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:33,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:34,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:34,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:34,014 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:34,048 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:34,100 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:34,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:34,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:34,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:34,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:34,647 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:34,648 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:34,648 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:34,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:34,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:34,956 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:34,956 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:34,975 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:35,105 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:35,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:35,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:35,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:35,289 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:35,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:35,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:35,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:35,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:35,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:35,896 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:35,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:35,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:35,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:36,109 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:36,191 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:36,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:36,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:36,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:36,510 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:36,511 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:36,511 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:36,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:36,824 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:36,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:36,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:36,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:37,121 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:37,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:37,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:37,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:37,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:37,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:37,450 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:37,450 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:37,462 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:37,760 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:37,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:37,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:37,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:38,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:38,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:38,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:38,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:38,121 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:38,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:38,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:38,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:38,435 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:38,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:38,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:38,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:38,776 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:39,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:39,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:39,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:39,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:39,122 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:39,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:39,391 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:39,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:39,438 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:39,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:39,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:39,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:39,760 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:40,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:40,036 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:40,036 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:40,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:40,126 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:40,352 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:40,353 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:40,353 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:40,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:40,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:40,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:40,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:40,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:40,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:40,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:40,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:40,994 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:41,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:41,133 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:41,301 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:41,301 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:41,301 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:41,351 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:41,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:41,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:41,696 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:41,751 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:42,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:42,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:42,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:42,111 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:42,138 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:42,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:42,448 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:42,448 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:42,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:42,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:42,853 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:42,853 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:42,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:43,152 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:43,167 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:43,167 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:43,168 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:43,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:43,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:43,483 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:43,483 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:43,495 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:43,797 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:43,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:43,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:43,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:44,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:44,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:44,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:44,118 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:44,152 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:44,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:44,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:44,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:44,441 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:44,733 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:44,733 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:44,733 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:44,752 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:45,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:45,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:45,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:45,072 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:45,158 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:45,373 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:45,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:45,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:45,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:45,686 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:45,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:45,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:45,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:20:45,699 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:45,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:20:45,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:45,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:45,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:45,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:46,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:46,162 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:46,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:46,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:46,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:46,333 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:46,632 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:46,632 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:46,632 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:46,673 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:46,949 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:46,949 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:46,949 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:46,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:47,173 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:47,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:47,258 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:47,258 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:47,305 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:47,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:47,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:47,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:47,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:47,918 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:47,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:47,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:47,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:48,182 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:48,284 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:48,285 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:48,285 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:48,360 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:48,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:48,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:48,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:48,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:48,959 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:48,960 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:48,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:49,032 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:49,199 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:49,269 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:49,269 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:49,269 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:49,340 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:49,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:49,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:49,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:49,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:49,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:49,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:49,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:50,021 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:50,216 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:50,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:50,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:50,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:50,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:50,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:50,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:50,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:50,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:50,976 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:50,976 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:50,976 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:51,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:51,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:51,232 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:51,298 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:51,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:51,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:51,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:51,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:51,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:51,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:51,663 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:51,934 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:51,935 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:51,935 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:51,969 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:52,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:52,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:52,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:52,243 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:52,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:52,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:52,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:52,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:52,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:52,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:52,870 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:52,870 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:52,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:53,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:53,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:53,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:53,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:53,244 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:53,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:53,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:53,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:53,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:53,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:53,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:53,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:53,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:54,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:54,116 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:54,116 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:54,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:54,248 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:54,441 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:54,444 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:54,444 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:54,456 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:54,747 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:54,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:54,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:54,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:55,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:55,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:55,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:55,083 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:55,253 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:55,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:55,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:55,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:55,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:55,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:55,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:55,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:55,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:56,010 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:56,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:56,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:56,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:56,265 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:56,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:56,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:56,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:56,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:20:56,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:56,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:56,634 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:56,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:56,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:56,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:56,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:56,948 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:56,960 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:57,254 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:57,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:57,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:57,265 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:57,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:57,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:57,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:57,568 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:57,581 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:57,880 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:57,880 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:57,880 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:57,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:58,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:58,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:58,194 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:58,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:58,266 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:58,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:58,505 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:58,505 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:58,517 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:58,820 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:58,820 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:58,820 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:58,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:59,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:59,133 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:59,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:59,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:59,270 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:20:59,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:59,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:59,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:59,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:20:59,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:20:59,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:20:59,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:20:59,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:00,105 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:00,105 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:00,105 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:00,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:00,277 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:00,441 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:00,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:00,442 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:00,489 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:00,502 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:21:00,689 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:21:00,689 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:21:00,757 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:00,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:00,828 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:00,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:01,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:01,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:01,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:01,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:01,286 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:01,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:01,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:01,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:01,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:01,497 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:01,770 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:01,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:01,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:01,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:02,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:02,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:02,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:02,159 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:02,290 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:02,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:02,435 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:02,435 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:02,498 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:02,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:02,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:02,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:02,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:03,301 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:03,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:03,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:03,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:03,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:03,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:03,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:03,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:03,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:04,141 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:04,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:04,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:04,172 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:04,308 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:04,470 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:04,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:04,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:04,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:04,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:04,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:04,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:04,804 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:05,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:05,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:05,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:05,127 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:05,321 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:05,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:05,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:05,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:05,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:05,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:05,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:05,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:05,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:06,039 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:06,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:06,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:06,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:06,332 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:06,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:06,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:06,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:06,395 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:06,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:06,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:06,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:06,666 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:06,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:06,981 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:06,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:06,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:07,015 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:07,283 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:07,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:07,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:07,306 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:07,332 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:07,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:07,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:07,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:07,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:07,919 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:07,919 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:07,919 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:07,957 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:08,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:08,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:08,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:08,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:08,338 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:08,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:08,565 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:08,566 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:08,617 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:08,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:08,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:08,880 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:08,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:09,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:09,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:09,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:09,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:09,343 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:09,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:09,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:09,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:09,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:09,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:09,808 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:09,808 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:09,842 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:10,130 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:10,130 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:10,130 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:10,177 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:10,358 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:10,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:10,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:10,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:10,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:10,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:10,764 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:10,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:10,777 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:11,074 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:11,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:11,075 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:11,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:11,370 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:11,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:11,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:11,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:11,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:11,696 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:11,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:11,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:11,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:11,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:12,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:12,007 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:12,007 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:12,021 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:12,320 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:12,320 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:12,320 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:12,336 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:12,370 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:12,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:12,625 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:12,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:12,645 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:12,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:12,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:12,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:12,967 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:13,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:13,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:13,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:13,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:13,377 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:13,569 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:13,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:13,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:13,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:13,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:13,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:13,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:13,891 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:14,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:14,187 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:14,187 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:14,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:14,383 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:14,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:14,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:14,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:14,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:14,805 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:14,806 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:14,806 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:14,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:15,110 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:15,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:15,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:15,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:15,395 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:15,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:15,430 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:15,430 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:15,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:15,690 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:21:15,690 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:21:15,726 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:15,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:15,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:15,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:16,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:16,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:16,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:16,052 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:16,354 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:16,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:16,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:16,369 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:16,395 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:16,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:16,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:16,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:16,682 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:16,981 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:16,981 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:16,981 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:16,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:17,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:17,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:17,292 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:17,292 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:17,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:17,402 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:17,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:17,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:17,606 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:17,618 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:17,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:17,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:17,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:17,927 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:18,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:18,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:18,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:18,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:18,408 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:18,539 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:18,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:18,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:18,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:18,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:18,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:18,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:18,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:19,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:19,179 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:19,179 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:19,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:19,423 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:19,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:19,494 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:19,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:19,506 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:19,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:19,808 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:19,808 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:19,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:20,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:20,119 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:20,119 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:20,131 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:20,436 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:20,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:20,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:20,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:20,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:20,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:20,736 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:20,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:20,790 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:21,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:21,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:21,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:21,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:21,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:21,397 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:21,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:21,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:21,429 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:21,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:21,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:21,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:21,782 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:22,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:22,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:22,119 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:22,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:22,182 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:22,433 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:22,485 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:22,486 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:22,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:22,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:22,858 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:22,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:22,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:22,920 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:23,194 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:23,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:23,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:23,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:23,445 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:23,530 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:23,530 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:23,530 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:23,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:23,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:23,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:23,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:23,930 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:24,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:24,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:24,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:24,288 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:24,452 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:24,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:24,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:24,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:24,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:25,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:25,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:25,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:25,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:25,460 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:25,597 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:25,597 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:25,597 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:25,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:25,968 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:25,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:25,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:26,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:26,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:26,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:26,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:26,476 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:26,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:26,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:26,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:26,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:26,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:27,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:27,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:27,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:27,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:27,461 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:27,487 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:27,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:27,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:27,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:27,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:28,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:28,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:28,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:28,287 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:28,504 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:28,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:28,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:28,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:28,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:28,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:28,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:28,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:29,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:29,337 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:29,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:29,337 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:29,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:29,510 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:29,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:29,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:29,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:29,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:29,977 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:29,977 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:29,977 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:30,030 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:30,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:30,278 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:30,278 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:30,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:30,510 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:21:30,511 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:30,599 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:30,599 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:30,600 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:30,634 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:30,690 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:21:30,690 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:21:30,918 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:30,919 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:30,919 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:30,950 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:31,234 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:31,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:31,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:31,248 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:31,523 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:31,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:31,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:31,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:31,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:31,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:31,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:31,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:31,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:32,178 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:32,178 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:32,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:32,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:32,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:32,492 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:32,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:32,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:32,504 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:32,523 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:32,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:32,808 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:32,808 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:32,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:33,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:33,116 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:33,116 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:33,130 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:33,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:33,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:33,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:33,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:33,530 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:33,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:33,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:33,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:33,760 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:34,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:34,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:34,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:34,068 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:34,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:34,370 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:34,370 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:34,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:34,539 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:34,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:34,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:34,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:34,705 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:35,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:35,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:35,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:35,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:35,305 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:35,305 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:35,305 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:35,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:35,560 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:35,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:35,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:35,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:35,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:35,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:35,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:35,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:35,948 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:36,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:36,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:36,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:36,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:36,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:36,565 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:36,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:36,573 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:36,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:36,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:36,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:36,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:36,891 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:37,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:37,190 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:37,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:37,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:37,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:37,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:37,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:37,500 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:37,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:37,574 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:37,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:37,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:37,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:37,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:38,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:38,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:38,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:38,137 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:38,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:38,435 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:38,435 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:38,448 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:38,581 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:38,748 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:38,749 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:38,749 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:38,761 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:39,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:39,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:39,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:39,068 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:39,364 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:39,364 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:39,364 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:39,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:39,592 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:39,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:39,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:39,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:39,699 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:39,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:39,991 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:39,991 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:40,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:40,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:40,306 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:40,306 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:40,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:40,604 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:40,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:40,632 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:40,632 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:40,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:40,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:40,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:40,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:40,957 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:41,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:41,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:41,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:41,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:41,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:41,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:41,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:41,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:41,604 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:41,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:41,874 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:41,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:41,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:42,198 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:42,198 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:42,199 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:42,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:42,514 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:42,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:42,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:42,515 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:42,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:42,613 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:42,827 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:42,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:42,828 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:42,864 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:43,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:43,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:43,134 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:43,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:43,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:43,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:43,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:43,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:43,619 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:43,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:43,774 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:43,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:43,828 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:44,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:44,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:44,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:44,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:44,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:44,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:44,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:44,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:44,625 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:44,812 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:44,812 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:44,813 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:44,874 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:45,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:45,166 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:45,166 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:45,207 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:45,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:45,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:45,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:45,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:45,632 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:45,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:21:45,691 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:21:45,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:45,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:45,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:45,956 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:46,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:46,280 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:46,280 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:46,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:46,647 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:46,648 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:46,648 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:46,648 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:46,717 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:47,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:47,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:47,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:47,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:47,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:47,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:47,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:47,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:47,659 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:47,673 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:47,673 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:47,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:47,674 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:47,731 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:48,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:48,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:48,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:48,075 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:48,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:48,347 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:48,347 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:48,410 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:48,671 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:48,694 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:48,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:48,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:48,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:49,100 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:49,100 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:49,100 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:49,156 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:49,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:49,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:49,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:49,602 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:49,675 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:50,026 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:50,026 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:50,026 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:50,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:50,340 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:50,340 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:50,340 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:50,403 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:50,680 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:50,680 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:50,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:50,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:50,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:51,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:51,026 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:51,026 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:51,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:51,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:51,448 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:51,449 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:51,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:51,693 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:51,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:51,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:51,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:52,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:52,394 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:52,394 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:52,394 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:52,433 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:52,704 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:52,717 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:52,718 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:52,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:52,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:52,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:53,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:53,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:53,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:53,058 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:53,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:53,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:53,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:53,375 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:53,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:53,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:53,680 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:53,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:53,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:53,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:53,997 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:53,997 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:54,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:54,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:54,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:54,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:54,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:54,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:54,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:54,624 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:54,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:54,712 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:54,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:54,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:54,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:54,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:55,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:55,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:55,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:55,256 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:55,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:55,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:55,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:55,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:55,717 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:55,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:55,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:55,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:55,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:56,178 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:56,179 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:56,179 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:56,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:56,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:56,492 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:56,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:56,504 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:56,738 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:56,793 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:56,793 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:56,793 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:56,812 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:57,104 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:57,104 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:57,104 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:57,153 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:57,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:57,429 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:57,430 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:57,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:57,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:57,744 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:57,744 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:57,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:21:57,752 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:57,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:58,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:58,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:58,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:58,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:58,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:58,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:58,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:58,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:58,677 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:58,677 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:58,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:58,726 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:58,757 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:58,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:58,988 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:58,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:59,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:59,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:59,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:59,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:59,333 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:59,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:59,616 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:59,616 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:59,645 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:21:59,764 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:21:59,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:21:59,928 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:21:59,928 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:21:59,937 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:00,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:00,244 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:00,244 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:00,264 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:00,511 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:22:00,569 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:00,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:00,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:00,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:00,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:22:00,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:22:00,772 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:00,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:00,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:00,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:00,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:01,195 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:01,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:01,196 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:01,209 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:01,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:01,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:01,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:01,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:01,787 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:01,807 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:01,807 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:01,807 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:01,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:02,122 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:02,122 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:02,122 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:02,141 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:02,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:02,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:02,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:02,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:02,760 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:02,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:02,761 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:02,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:02,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:02,788 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:03,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:03,081 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:03,081 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:03,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:03,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:03,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:03,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:03,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:03,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:03,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:03,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:03,721 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:03,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:04,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:04,027 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:04,027 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:04,040 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:04,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:04,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:04,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:04,346 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:04,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:04,651 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:04,651 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:04,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:04,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:04,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:04,963 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:04,963 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:04,975 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:05,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:05,271 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:05,271 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:05,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:05,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:05,589 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:05,589 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:05,601 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:05,809 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:05,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:05,896 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:05,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:05,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:06,194 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:06,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:06,194 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:06,214 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:06,524 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:06,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:06,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:06,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:06,821 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:06,841 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:06,842 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:06,842 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:06,854 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:07,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:07,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:07,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:07,163 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:07,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:07,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:07,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:07,478 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:07,778 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:07,779 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:07,779 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:07,779 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:07,792 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:07,821 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:08,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:08,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:08,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:08,134 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:08,408 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:08,408 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:08,408 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:08,445 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:08,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:08,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:08,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:08,760 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:08,827 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:09,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:09,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:09,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:09,082 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:09,347 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:09,348 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:09,348 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:09,436 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:09,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:09,692 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:09,692 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:09,775 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:09,833 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:10,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:10,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:10,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:10,131 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:10,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:10,383 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:10,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:10,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:10,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:10,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:10,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:10,823 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:10,840 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:11,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:11,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:11,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:11,151 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:11,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:11,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:11,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:11,532 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:11,831 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:11,832 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:11,832 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:11,840 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:11,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:12,175 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:12,175 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:12,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:12,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:12,249 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:12,250 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:12,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:12,315 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:12,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:12,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:12,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:12,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:12,845 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:12,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:12,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:12,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:12,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:13,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:13,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:13,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:13,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:13,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:13,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:13,728 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:13,729 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:13,823 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:13,855 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:14,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:14,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:14,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:14,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:14,511 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:14,512 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:14,512 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:14,581 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:14,863 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:14,949 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:14,950 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:14,950 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:15,030 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:15,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:15,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:15,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:15,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:15,665 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:15,665 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:15,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:15,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:22:15,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:15,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:22:15,866 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:16,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:16,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:16,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:16,138 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:16,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:16,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:16,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:16,509 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:16,878 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:16,910 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:16,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:16,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:16,989 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:17,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:17,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:17,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:17,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:17,896 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:17,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:17,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:17,948 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:17,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:18,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:18,441 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:18,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:18,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:18,524 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:18,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:18,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:18,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:18,903 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:18,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:19,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:19,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:19,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:19,376 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:19,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:19,646 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:19,646 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:19,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:19,915 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:19,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:19,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:19,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:19,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:20,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:20,267 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:20,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:20,280 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:20,580 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:20,580 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:20,580 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:20,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:20,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:20,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:20,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:20,901 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:20,915 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:21,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:21,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:21,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:21,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:21,507 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:21,507 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:21,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:21,526 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:21,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:21,813 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:21,813 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:21,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:21,921 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:22,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:22,134 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:22,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:22,146 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:22,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:22,438 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:22,438 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:22,456 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:22,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:22,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:22,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:22,772 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:22,927 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:23,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:23,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:23,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:23,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:23,084 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:23,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:23,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:23,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:23,399 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:23,696 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:23,696 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:23,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:23,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:23,943 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:23,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:23,998 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:23,998 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:24,016 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:24,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:24,317 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:24,317 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:24,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:24,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:24,629 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:24,629 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:24,641 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:24,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:24,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:24,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:24,950 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:24,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:25,252 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:25,252 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:25,253 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:25,265 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:25,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:25,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:25,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:25,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:25,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:25,884 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:25,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:25,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:25,951 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:26,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:26,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:26,194 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:26,206 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:26,503 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:26,503 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:26,503 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:26,516 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:26,823 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:26,824 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:26,824 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:26,836 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:26,956 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:27,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:27,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:27,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:27,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:27,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:27,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:27,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:27,460 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:27,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:27,764 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:27,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:27,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:27,961 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:28,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:28,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:28,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:28,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:28,089 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:28,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:28,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:28,382 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:28,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:28,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:28,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:28,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:28,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:28,972 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:29,019 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:29,019 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:29,020 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:29,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:29,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:29,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:29,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:29,375 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:29,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:29,636 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:29,636 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:29,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:29,964 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:29,965 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:29,965 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:29,973 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:30,014 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:30,280 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:30,280 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:30,280 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:30,340 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:30,517 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:22:30,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:30,596 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:30,596 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:30,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:30,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:22:30,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:22:30,910 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:30,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:30,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:30,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:30,973 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:31,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:31,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:31,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:31,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:31,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:31,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:31,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:31,579 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:31,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:31,860 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:31,860 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:31,873 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:31,981 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:32,174 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:32,175 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:32,175 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:32,207 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:32,484 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:32,485 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:32,485 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:32,504 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:32,799 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:32,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:32,800 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:32,844 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:32,986 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:33,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:33,106 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:33,106 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:33,107 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:33,154 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:33,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:33,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:33,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:33,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:33,745 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:33,746 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:33,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:33,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:34,000 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:34,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:34,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:34,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:34,100 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:34,377 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:34,377 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:34,377 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:34,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:34,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:34,688 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:34,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:34,712 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:34,989 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:34,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:34,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:35,007 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:35,020 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:35,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:35,313 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:35,313 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:35,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:35,623 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:35,624 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:35,624 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:35,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:35,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:35,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:35,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:35,991 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:36,008 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:36,250 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:36,250 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:36,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:36,306 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:36,580 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:36,580 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:36,580 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:36,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:36,912 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:36,913 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:36,913 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:36,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:37,014 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:37,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:37,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:37,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:37,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:37,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:37,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:37,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:37,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:37,868 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:37,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:37,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:37,934 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:38,022 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:38,195 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:38,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:38,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:38,195 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:38,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:38,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:38,498 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:38,498 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:38,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:38,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:38,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:38,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:38,915 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:39,027 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:39,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:39,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:39,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:39,246 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:39,488 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:39,489 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:39,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:39,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:39,831 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:39,831 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:39,831 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:39,914 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:40,037 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:40,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:40,278 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:40,278 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:40,347 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:40,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:40,685 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:40,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:40,717 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:41,049 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:41,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:41,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:41,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:41,159 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:41,540 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:41,541 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:41,541 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:41,622 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:41,863 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:41,864 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:41,864 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:41,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:42,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:42,178 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:42,178 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:42,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:42,213 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:42,481 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:42,481 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:42,481 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:42,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:42,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:42,799 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:42,799 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:42,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:43,067 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:43,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:43,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:43,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:43,131 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:43,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:43,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:43,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:43,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:43,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:43,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:43,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:43,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:43,853 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:44,088 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:44,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:44,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:44,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:44,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:44,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:44,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:44,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:44,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:44,787 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:44,787 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:44,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:44,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:45,103 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:45,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:45,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:45,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:45,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:45,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:45,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:45,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:45,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:45,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:22:45,699 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:22:45,723 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:45,835 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:45,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:45,844 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:46,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:46,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:46,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:46,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:46,094 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:46,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:46,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:46,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:46,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:46,652 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:46,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:46,652 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:46,679 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:46,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:46,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:46,957 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:46,991 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:47,098 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:47,275 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:47,275 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:47,275 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:47,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:47,605 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:47,605 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:47,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:47,682 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:47,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:47,927 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:47,927 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:47,992 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:48,104 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:48,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:48,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:48,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:48,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:48,558 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:48,558 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:48,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:48,558 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:48,612 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:48,882 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:48,882 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:48,882 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:48,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:49,109 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:49,222 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:49,222 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:49,222 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:49,282 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:49,546 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:49,547 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:49,547 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:49,585 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:49,858 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:49,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:49,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:49,921 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:50,124 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:50,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:50,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:50,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:50,259 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:50,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:50,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:50,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:50,591 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:50,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:50,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:50,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:50,884 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:51,136 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:51,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:51,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:51,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:51,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:51,467 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:51,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:51,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:51,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:51,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:51,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:51,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:51,832 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:52,103 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:52,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:52,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:52,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:52,136 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:52,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:52,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:52,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:52,436 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:52,734 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:52,735 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:52,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:52,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:53,044 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:53,044 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:53,044 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:53,056 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:53,142 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:53,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:53,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:53,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:53,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:53,662 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:53,662 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:53,662 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:53,662 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:53,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:53,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:53,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:53,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:54,004 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:54,147 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:54,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:54,312 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:54,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:54,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:54,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:54,625 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:54,625 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:54,637 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:54,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:54,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:54,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:54,953 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:55,157 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:55,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:55,257 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:55,257 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:55,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:55,569 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:55,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:55,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:55,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:55,882 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:55,883 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:55,883 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:55,899 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:56,176 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:56,191 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:56,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:56,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:56,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:56,516 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:56,516 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:56,516 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:56,528 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:56,826 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:56,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:56,827 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:56,839 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:57,132 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:57,132 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:57,132 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:57,151 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:57,176 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:57,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:57,452 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:57,452 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:57,465 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:57,769 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:57,769 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:57,770 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:57,788 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:58,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:58,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:58,078 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:58,090 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:58,182 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:58,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:58,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:58,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:58,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:58,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:58,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:58,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:58,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:22:58,727 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:59,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:59,015 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:59,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:59,052 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:59,188 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:22:59,350 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:59,351 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:59,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:59,385 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:59,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:59,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:59,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:22:59,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:22:59,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:22:59,998 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:22:59,998 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:00,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:00,195 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:00,320 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:00,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:00,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:00,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:00,521 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:23:00,635 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:00,635 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:00,635 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:00,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:23:00,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:00,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:23:00,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:00,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:00,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:01,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:01,216 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:01,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:01,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:01,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:01,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:01,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:01,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:01,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:01,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:01,907 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:01,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:01,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:01,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:02,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:02,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:02,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:02,226 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:02,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:02,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:02,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:02,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:02,591 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:02,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:02,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:02,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:02,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:03,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:03,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:03,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:03,185 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:03,227 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:03,490 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:03,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:03,491 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:03,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:03,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:03,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:03,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:03,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:03,873 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:04,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:04,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:04,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:04,172 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:04,228 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:04,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:04,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:04,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:04,502 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:04,787 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:04,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:04,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:04,812 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:05,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:05,099 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:05,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:05,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:05,233 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:05,399 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:05,399 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:05,399 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:05,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:05,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:05,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:05,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:05,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:06,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:06,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:06,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:06,076 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:06,245 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:06,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:06,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:06,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:06,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:06,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:06,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:06,664 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:06,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:06,973 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:06,973 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:06,973 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:07,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:07,257 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:07,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:07,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:07,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:07,334 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:07,596 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:07,596 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:07,597 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:07,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:07,908 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:07,908 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:07,908 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:07,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:08,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:08,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:08,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:08,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:08,271 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:08,548 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:08,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:08,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:08,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:08,865 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:08,865 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:08,865 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:08,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:08,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:09,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:09,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:09,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:09,239 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:09,277 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:09,490 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:09,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:09,490 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:09,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:09,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:09,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:09,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:09,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:10,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:10,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:10,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:10,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:10,281 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:10,435 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:10,436 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:10,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:10,474 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:10,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:10,744 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:10,745 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:10,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:11,054 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:11,055 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:11,055 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:11,086 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:11,290 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:11,364 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:11,365 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:11,365 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:11,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:11,672 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:11,672 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:11,672 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:11,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:11,983 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:11,983 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:11,983 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:11,997 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:12,283 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:12,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:12,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:12,301 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:12,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:12,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:12,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:12,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:12,606 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:12,907 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:12,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:12,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:12,919 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:13,231 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:13,232 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:13,232 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:13,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:13,301 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:13,536 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:13,536 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:13,536 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:13,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:13,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:13,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:13,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:13,852 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:14,150 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:14,150 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:14,150 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:14,150 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:14,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:14,309 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:14,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:14,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:14,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:14,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:14,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:14,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:14,776 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:14,839 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:15,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:15,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:15,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:15,097 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:15,320 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:15,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:15,383 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:15,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:15,402 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:15,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:15,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:15,706 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:15,706 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:23:15,717 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:15,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:23:16,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:16,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:16,021 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:16,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:16,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:16,328 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:16,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:16,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:16,347 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:16,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:16,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:16,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:16,661 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:16,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:16,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:16,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:16,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:17,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:17,280 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:17,280 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:17,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:17,329 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:17,575 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:17,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:17,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:17,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:17,896 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:17,897 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:17,897 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:17,909 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:18,194 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:18,194 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:18,194 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:18,213 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:18,337 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:18,516 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:18,517 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:18,517 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:18,530 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:18,814 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:18,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:18,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:18,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:19,138 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:19,138 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:19,139 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:19,150 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:19,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:19,343 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:19,528 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:19,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:19,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:19,541 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:19,844 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:19,844 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:19,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:19,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:20,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:20,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:20,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:20,165 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:20,350 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:20,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:20,461 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:20,461 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:20,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:20,770 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:20,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:20,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:20,783 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:21,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:21,072 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:21,072 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:21,091 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:21,362 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:21,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:21,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:21,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:21,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:21,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:21,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:21,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:21,717 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:22,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:22,021 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:22,021 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:22,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:22,322 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:22,322 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:22,322 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:22,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:22,369 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:22,682 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:22,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:22,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:22,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:23,056 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:23,056 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:23,056 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:23,108 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:23,381 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:23,409 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:23,410 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:23,410 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:23,449 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:23,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:23,722 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:23,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:23,775 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:24,035 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:24,035 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:24,035 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:24,098 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:24,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:24,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:24,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:24,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:24,382 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:24,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:24,673 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:24,674 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:24,674 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:24,739 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:24,995 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:24,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:24,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:25,062 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:25,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:25,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:25,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:25,362 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:25,382 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:25,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:25,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:25,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:25,692 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:25,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:25,952 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:25,953 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:26,038 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:26,293 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:26,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:26,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:26,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:26,387 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:26,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:26,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:26,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:26,686 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:26,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:26,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:26,934 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:27,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:27,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:27,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:27,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:27,331 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:27,394 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:27,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:27,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:27,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:27,675 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:27,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:27,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:27,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:27,984 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:28,228 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:28,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:28,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:28,298 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:28,399 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:28,599 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:28,599 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:28,599 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:28,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:28,928 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:28,928 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:28,929 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:28,993 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:29,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:29,250 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:29,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:29,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:29,404 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:29,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:29,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:29,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:29,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:29,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:29,930 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:29,931 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:29,931 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:29,991 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:30,340 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:30,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:30,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:30,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:30,405 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:30,523 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:23:30,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:30,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:30,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:30,706 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:23:30,718 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:30,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:23:30,981 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:30,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:30,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:31,032 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:31,300 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:31,300 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:31,300 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:31,352 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:31,410 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:31,614 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:31,614 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:31,614 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:31,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:31,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:31,939 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:31,939 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:31,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:32,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:32,249 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:32,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:32,291 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:32,414 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:32,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:32,562 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:32,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:32,626 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:32,892 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:32,892 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:32,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:32,924 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:33,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:33,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:33,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:33,250 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:33,415 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:33,515 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:33,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:33,516 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:33,544 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:33,831 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:33,831 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:33,831 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:33,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:34,144 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:34,144 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:34,144 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:34,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:34,427 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:34,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:34,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:34,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:34,460 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:34,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:34,765 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:34,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:34,766 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:34,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:35,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:35,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:35,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:35,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:35,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:35,391 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:35,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:35,403 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:35,427 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:35,706 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:35,706 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:35,706 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:35,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:36,015 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:36,015 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:36,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:36,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:36,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:36,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:36,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:36,340 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:36,434 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:36,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:36,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:36,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:36,646 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:36,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:36,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:36,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:36,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:37,250 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:37,250 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:37,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:37,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:37,439 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:37,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:37,571 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:37,571 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:37,584 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:37,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:37,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:37,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:37,891 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:38,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:38,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:38,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:38,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:38,451 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:38,483 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:38,483 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:38,483 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:38,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:38,794 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:38,794 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:38,794 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:38,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:39,111 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:39,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:39,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:39,125 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:39,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:39,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:39,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:39,433 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:39,451 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:39,724 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:39,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:39,724 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:39,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:40,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:40,033 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:40,033 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:40,034 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:40,053 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:40,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:40,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:40,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:40,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:40,455 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:40,659 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:40,659 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:40,659 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:40,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:40,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:40,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:40,983 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:40,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:41,291 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:41,291 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:41,291 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:41,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:41,459 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:41,603 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:41,603 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:41,603 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:41,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:41,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:41,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:41,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:41,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:42,227 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:42,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:42,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:42,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:42,475 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:42,539 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:42,539 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:42,539 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:42,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:42,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:42,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:42,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:42,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:43,146 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:43,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:43,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:43,165 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:43,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:43,464 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:43,464 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:43,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:43,483 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:43,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:43,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:43,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:43,781 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:44,080 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:44,081 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:44,081 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:44,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:44,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:44,380 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:44,380 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:44,399 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:44,487 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:44,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:44,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:44,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:44,715 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:45,061 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:45,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:45,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:45,062 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:45,089 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:45,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:45,385 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:45,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:45,415 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:45,491 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:45,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:45,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:45,703 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:45,711 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:23:45,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:45,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:23:46,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:46,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:46,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:46,036 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:46,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:46,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:46,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:46,343 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:46,496 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:46,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:46,634 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:46,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:46,667 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:46,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:46,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:46,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:46,978 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:47,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:47,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:47,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:47,269 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:47,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:47,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:47,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:47,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:47,581 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:47,868 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:47,868 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:47,868 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:47,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:48,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:48,191 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:48,191 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:48,204 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:48,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:48,502 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:48,502 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:48,514 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:48,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:48,815 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:48,815 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:48,815 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:48,851 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:49,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:49,163 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:49,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:49,232 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:49,538 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:49,579 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:49,580 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:49,580 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:49,631 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:49,915 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:49,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:49,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:49,956 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:50,226 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:50,227 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:50,227 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:50,227 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:50,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:50,541 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:50,542 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:50,542 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:50,550 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:50,590 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:50,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:50,845 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:50,845 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:50,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:51,157 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:51,157 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:51,157 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:51,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:51,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:51,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:51,479 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:51,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:51,550 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:51,796 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:51,796 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:51,796 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:51,866 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:52,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:52,097 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:52,097 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:52,150 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:52,420 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:52,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:52,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:52,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:52,557 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:52,724 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:52,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:52,724 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:52,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:53,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:53,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:53,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:53,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:53,358 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:53,358 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:53,358 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:53,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:53,564 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:53,680 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:53,682 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:53,682 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:53,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:54,003 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:54,004 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:54,004 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:54,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:54,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:54,379 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:54,380 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:54,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:54,574 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:54,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:54,753 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:54,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:54,826 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:55,112 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:55,112 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:55,112 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:55,176 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:55,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:55,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:55,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:55,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:23:55,476 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:55,579 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:55,742 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:55,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:55,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:55,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:56,059 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:56,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:56,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:56,097 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:56,383 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:56,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:56,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:56,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:56,592 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:56,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:56,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:56,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:56,722 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:57,003 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:57,003 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:57,003 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:57,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:57,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:57,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:57,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:57,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:57,597 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:57,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:57,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:57,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:57,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:57,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:57,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:57,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:57,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:58,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:58,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:58,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:58,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:58,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:58,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:58,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:58,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:58,598 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:58,855 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:58,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:58,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:58,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:59,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:59,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:59,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:59,175 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:59,477 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:59,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:59,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:59,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:23:59,604 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:23:59,791 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:23:59,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:23:59,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:23:59,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:00,091 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:00,091 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:00,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:00,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:00,421 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:00,421 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:00,421 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:00,433 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:00,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:00,526 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:24:00,605 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:00,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:24:00,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:24:00,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:00,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:00,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:00,865 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:01,053 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:01,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:01,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:01,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:01,380 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:01,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:01,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:01,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:01,616 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:01,695 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:01,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:01,697 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:01,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:02,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:02,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:02,014 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:02,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:02,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:02,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:02,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:02,335 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:02,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:02,632 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:02,632 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:02,632 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:02,651 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:02,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:02,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:02,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:02,978 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:03,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:03,264 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:03,264 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:03,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:03,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:03,588 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:03,588 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:03,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:03,632 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:03,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:03,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:03,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:03,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:04,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:04,218 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:04,218 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:04,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:04,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:04,535 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:04,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:04,555 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:04,637 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:04,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:04,848 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:04,848 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:04,891 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:05,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:05,158 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:05,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:05,187 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:05,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:05,474 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:05,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:05,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:05,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:05,645 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:05,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:05,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:05,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:05,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:06,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:06,082 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:06,082 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:06,101 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:06,404 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:06,405 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:06,405 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:06,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:06,658 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:06,726 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:06,727 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:06,727 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:06,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:07,038 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:07,039 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:07,039 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:07,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:07,353 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:07,353 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:07,354 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:07,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:07,671 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:07,671 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:07,671 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:07,671 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:07,684 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:07,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:07,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:07,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:07,994 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:08,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:08,303 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:08,303 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:08,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:08,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:08,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:08,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:08,625 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:08,661 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:08,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:08,924 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:08,924 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:08,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:09,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:09,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:09,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:09,251 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:09,550 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:09,550 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:09,550 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:09,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:09,669 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:09,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:09,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:09,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:09,876 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:10,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:10,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:10,168 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:10,187 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:10,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:10,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:10,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:10,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:10,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:10,675 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:10,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:10,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:10,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:10,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:11,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:11,113 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:11,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:11,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:11,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:11,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:11,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:11,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:11,687 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:11,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:11,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:11,738 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:11,759 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:12,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:12,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:12,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:12,080 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:12,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:12,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:12,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:12,386 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:12,686 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:12,686 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:12,686 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:12,694 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:12,732 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:13,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:13,004 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:13,004 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:13,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:13,312 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:13,313 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:13,313 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:13,338 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:13,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:13,616 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:13,616 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:13,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:13,695 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:13,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:13,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:13,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:14,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:14,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:14,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:14,260 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:14,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:14,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:14,565 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:14,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:14,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:14,700 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:14,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:14,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:14,885 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:14,931 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:15,204 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:15,204 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:15,205 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:15,272 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:15,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:15,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:15,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:15,535 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:15,580 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:15,705 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:15,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:24:15,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:24:15,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:15,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:15,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:15,918 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:16,157 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:16,157 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:16,157 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:16,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:16,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:16,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:16,480 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:16,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:16,718 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:16,786 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:16,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:16,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:16,842 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:17,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:17,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:17,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:17,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:17,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:17,458 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:17,458 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:17,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:17,730 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:17,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:17,774 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:17,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:17,839 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:18,120 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:18,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:18,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:18,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:18,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:18,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:18,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:18,500 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:18,742 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:18,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:18,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:18,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:18,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:19,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:19,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:19,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:19,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:19,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:19,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:19,396 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:19,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:19,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:19,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:19,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:19,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:19,742 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:20,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:20,124 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:20,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:20,184 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:20,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:20,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:20,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:20,497 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:20,754 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:20,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:20,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:20,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:20,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:20,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:21,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:21,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:21,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:21,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:21,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:21,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:21,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:21,415 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:21,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:21,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:21,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:21,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:21,755 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:22,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:22,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:22,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:22,037 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:22,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:22,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:22,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:22,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:22,654 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:22,654 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:22,655 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:22,676 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:22,759 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:22,966 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:22,966 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:22,967 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:22,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:23,279 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:23,279 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:23,279 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:23,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:23,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:23,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:23,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:23,610 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:23,767 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:23,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:23,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:23,904 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:23,923 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:24,229 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:24,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:24,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:24,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:24,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:24,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:24,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:24,558 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:24,787 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:24,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:24,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:24,866 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:24,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:25,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:25,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:25,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:25,193 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:25,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:25,493 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:25,493 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:25,506 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:25,798 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:25,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:25,799 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:25,799 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:25,799 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:25,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:26,115 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:26,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:26,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:26,138 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:26,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:26,441 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:26,441 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:26,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:26,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:26,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:26,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:26,769 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:26,799 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:27,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:27,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:27,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:27,079 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:27,376 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:27,376 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:27,376 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:27,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:27,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:27,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:27,688 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:27,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:27,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:27,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:27,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:27,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:28,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:28,298 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:28,298 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:28,298 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:28,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:28,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:28,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:28,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:28,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:28,809 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:28,935 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:28,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:28,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:28,948 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:29,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:29,249 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:29,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:29,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:29,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:29,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:29,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:29,574 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:29,821 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:29,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:29,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:29,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:29,880 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:30,179 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:30,179 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:30,179 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:30,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:30,480 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:30,480 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:30,480 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:30,499 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:30,526 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:24:30,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:24:30,727 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:24:30,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:30,821 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:30,857 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:30,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:30,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:30,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:31,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:31,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:31,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:31,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:31,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:31,429 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:31,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:31,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:31,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:31,744 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:31,744 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:31,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:31,822 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:32,073 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:32,073 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:32,073 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:32,121 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:32,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:32,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:32,382 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:32,423 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:32,694 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:32,694 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:32,694 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:32,754 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:32,828 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:33,009 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:33,009 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:33,009 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:33,030 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:33,328 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:33,328 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:33,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:33,351 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:33,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:33,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:33,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:33,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:33,835 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:33,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:33,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:33,957 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:33,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:34,269 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:34,270 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:34,270 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:34,285 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:34,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:34,578 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:34,578 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:34,590 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:34,844 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:34,883 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:34,883 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:34,883 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:34,902 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:35,206 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:35,206 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:35,207 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:35,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:35,523 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:35,524 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:35,524 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:35,561 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:35,826 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:35,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:35,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:35,845 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:35,888 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:35,888 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:36,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:36,153 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:36,153 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:36,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:36,470 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:36,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:36,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:36,509 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:36,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:36,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:36,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:36,817 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:36,845 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:37,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:37,102 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:37,102 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:37,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:37,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:37,400 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:37,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:37,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:37,726 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:37,727 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:37,727 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:37,755 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:37,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:38,041 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:38,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:38,042 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:38,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:38,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:38,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:38,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:38,407 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:38,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:38,676 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:38,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:38,715 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:38,854 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:38,994 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:38,994 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:38,994 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:39,041 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:39,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:39,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:39,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:39,361 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:39,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:39,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:39,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:39,685 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:39,873 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:39,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:39,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:39,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:39,980 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:40,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:40,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:40,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:40,309 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:40,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:40,585 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:40,585 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:40,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:40,884 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:40,897 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:40,897 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:40,898 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:40,898 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:40,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:41,211 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:41,211 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:41,211 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:41,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:41,516 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:41,516 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:41,516 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:41,559 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:41,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:41,840 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:41,840 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:41,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:41,886 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:42,177 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:42,178 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:42,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:42,210 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:42,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:42,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:42,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:42,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:42,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:42,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:42,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:42,851 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:42,887 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:43,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:43,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:43,128 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:43,164 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:43,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:43,434 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:43,434 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:43,453 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:43,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:43,756 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:43,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:43,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:43,894 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:44,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:44,060 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:44,060 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:44,078 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:44,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:44,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:44,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:44,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:44,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:44,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:44,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:44,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:44,898 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:45,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:45,027 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:45,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:45,040 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:45,338 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:45,338 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:45,338 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:45,350 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:45,643 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:45,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:45,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:45,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:45,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:24:45,727 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:24:45,919 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:45,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:45,975 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:45,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:45,976 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:45,988 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:46,284 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:46,285 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:46,285 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:46,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:46,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:46,584 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:46,584 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:46,603 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:46,904 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:46,904 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:46,905 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:46,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:46,919 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:47,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:47,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:47,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:47,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:47,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:47,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:47,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:47,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:47,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:47,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:47,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:47,852 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:47,925 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:48,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:48,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:48,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:48,171 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:48,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:48,466 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:48,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:48,478 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:48,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:48,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:48,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:48,790 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:48,930 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:49,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:49,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:49,091 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:49,110 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:49,392 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:49,392 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:49,392 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:49,426 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:49,724 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:49,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:49,724 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:49,744 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:49,948 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:50,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:50,046 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:50,046 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:50,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:50,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:50,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:50,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:50,375 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:50,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:50,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:50,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:50,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:50,960 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:50,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:50,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:50,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:50,982 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:51,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:51,303 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:51,304 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:51,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:51,321 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:51,599 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:51,599 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:51,599 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:51,619 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:51,913 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:51,913 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:51,913 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:51,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:51,960 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:52,239 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:52,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:52,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:52,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:52,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:52,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:52,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:52,603 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:52,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:52,874 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:52,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:52,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:52,967 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:53,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:53,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:53,184 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:53,216 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:53,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:53,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:53,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:53,536 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:53,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:53,811 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:53,811 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:53,859 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:53,971 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:54,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:54,127 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:54,127 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:54,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:54,424 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:54,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:54,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:54,460 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:54,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:54,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:54,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:54,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:54,983 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:55,053 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:55,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:55,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:55,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:55,374 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:55,375 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:55,375 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:55,388 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:55,689 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:55,689 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:55,689 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:55,702 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:55,990 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:55,990 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:55,991 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:55,991 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:55,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:24:56,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:56,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:56,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:56,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:56,328 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:56,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:56,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:56,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:56,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:56,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:56,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:56,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:56,955 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:56,990 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:57,250 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:57,250 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:57,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:57,270 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:57,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:57,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:57,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:57,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:57,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:57,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:57,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:57,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:57,995 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:58,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:58,190 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:58,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:58,208 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:58,513 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:58,514 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:58,514 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:58,526 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:58,821 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:58,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:58,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:58,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:59,002 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:24:59,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:59,124 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:59,124 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:59,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:59,460 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:59,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:59,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:59,473 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:24:59,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:24:59,763 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:24:59,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:24:59,782 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:00,018 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:00,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:00,086 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:00,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:00,100 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:00,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:00,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:00,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:00,419 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:00,531 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:25:00,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:00,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:00,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:00,734 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:25:00,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:00,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:25:01,029 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:01,030 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:01,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:01,030 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:01,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:01,050 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:01,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:01,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:01,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:01,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:01,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:01,685 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:01,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:01,727 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:02,008 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:02,009 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:02,009 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:02,030 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:02,057 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:02,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:02,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:02,327 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:02,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:02,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:02,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:02,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:02,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:02,947 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:02,947 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:02,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:02,999 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:03,031 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:03,265 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:03,265 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:03,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:03,306 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:03,583 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:03,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:03,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:03,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:03,898 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:03,899 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:03,899 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:03,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:04,037 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:04,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:04,218 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:04,218 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:04,259 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:04,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:04,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:04,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:04,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:04,856 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:04,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:04,857 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:04,888 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:05,041 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:05,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:05,177 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:05,177 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:05,218 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:05,487 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:05,487 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:05,487 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:05,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:05,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:05,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:05,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:05,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:06,061 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:06,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:06,113 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:06,113 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:06,113 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:06,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:06,425 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:06,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:06,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:06,436 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:06,742 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:06,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:06,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:06,754 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:07,061 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:07,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:07,062 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:07,069 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:07,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:07,373 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:07,374 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:07,374 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:07,393 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:07,681 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:07,681 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:07,681 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:07,710 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:08,008 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:08,008 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:08,008 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:08,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:08,070 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:08,322 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:08,323 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:08,323 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:08,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:08,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:08,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:08,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:08,670 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:08,946 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:08,946 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:08,947 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:08,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:09,074 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:09,258 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:09,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:09,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:09,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:09,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:09,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:09,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:09,601 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:09,891 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:09,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:09,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:09,911 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:10,079 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:10,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:10,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:10,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:10,253 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:10,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:10,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:10,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:10,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:10,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:10,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:10,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:10,872 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:11,094 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:11,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:11,162 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:11,162 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:11,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:11,203 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:11,489 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:11,490 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:11,490 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:11,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:11,807 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:11,807 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:11,807 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:11,828 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:12,105 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:12,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:12,116 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:12,116 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:12,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:12,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:12,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:12,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:12,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:12,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:12,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:12,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:12,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:13,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:13,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:13,052 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:13,064 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:13,105 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:13,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:13,365 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:13,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:13,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:13,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:13,676 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:13,677 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:13,690 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:13,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:13,993 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:13,993 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:14,007 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:14,112 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:14,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:14,307 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:14,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:14,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:14,616 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:14,616 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:14,616 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:14,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:14,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:14,982 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:14,982 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:14,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:15,121 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:15,281 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:15,281 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:15,281 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:15,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:15,595 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:15,595 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:15,595 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:15,614 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:15,735 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:25:15,735 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:25:15,921 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:15,921 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:15,921 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:15,941 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:16,126 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:16,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:16,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:16,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:16,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:16,255 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:16,555 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:16,556 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:16,556 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:16,568 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:16,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:16,866 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:16,867 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:16,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:17,138 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:17,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:17,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:17,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:17,196 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:17,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:17,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:17,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:17,510 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:17,806 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:17,807 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:17,807 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:17,820 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:18,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:18,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:18,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:18,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:18,138 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:18,420 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:18,420 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:18,420 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:18,438 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:18,728 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:18,728 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:18,728 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:18,746 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:19,048 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:19,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:19,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:19,061 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:19,146 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:19,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:19,367 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:19,367 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:19,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:19,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:19,680 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:19,680 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:19,696 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:19,992 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:19,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:19,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:20,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:20,150 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:20,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:20,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:20,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:20,340 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:20,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:20,631 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:20,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:20,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:20,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:20,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:20,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:20,957 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:21,167 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:21,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:21,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:21,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:21,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:21,266 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:21,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:21,566 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:21,566 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:21,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:21,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:21,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:21,878 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:21,892 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:22,179 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:22,190 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:22,190 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:22,190 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:22,203 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:22,504 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:22,505 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:22,505 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:22,517 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:22,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:22,816 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:22,816 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:22,835 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:23,137 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:23,138 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:23,138 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:23,150 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:23,179 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:23,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:23,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:23,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:23,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:23,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:23,772 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:23,772 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:23,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:24,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:24,089 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:24,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:24,101 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:24,183 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:24,402 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:24,402 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:24,402 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:24,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:24,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:24,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:24,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:24,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:25,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:25,032 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:25,032 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:25,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:25,191 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:25,340 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:25,340 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:25,340 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:25,358 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:25,661 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:25,661 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:25,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:25,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:25,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:25,979 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:25,979 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:25,991 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:26,200 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:26,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:26,278 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:26,278 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:26,278 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:26,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:26,601 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:26,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:26,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:26,615 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:26,915 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:26,916 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:26,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:26,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:27,211 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:27,229 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:27,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:27,230 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:27,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:27,539 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:27,540 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:27,540 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:27,551 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:27,851 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:27,852 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:27,852 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:27,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:28,154 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:28,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:28,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:28,181 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:28,211 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:28,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:28,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:28,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:28,495 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:28,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:28,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:28,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:28,806 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:29,095 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:29,096 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:29,096 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:29,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:29,217 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:29,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:29,407 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:29,407 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:29,432 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:29,718 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:29,718 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:29,718 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:29,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:30,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:30,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:30,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:30,068 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:30,222 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:30,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:30,342 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:30,342 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:30,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:30,531 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:25:30,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:30,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:30,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:30,664 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:30,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:25:30,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:25:30,962 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:30,962 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:30,962 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:30,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:31,237 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:31,285 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:31,286 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:31,286 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:31,286 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:31,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:31,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:31,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:31,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:31,617 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:31,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:31,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:31,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:31,946 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:32,227 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:32,228 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:32,228 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:32,237 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:32,251 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:32,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:32,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:32,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:32,574 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:32,855 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:32,856 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:32,856 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:32,895 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:33,171 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:33,172 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:33,172 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:33,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:33,238 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:33,485 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:33,486 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:33,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:33,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:33,810 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:33,810 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:33,810 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:33,857 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:34,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:34,128 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:34,128 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:34,188 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:34,243 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:34,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:34,455 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:34,455 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:34,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:34,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:34,786 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:34,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:34,837 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:35,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:35,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:35,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:35,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:35,246 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:35,417 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:35,417 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:35,417 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:35,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:35,754 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:35,754 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:35,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:35,807 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:36,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:36,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:36,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:36,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:36,251 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:36,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:36,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:36,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:36,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:36,423 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:36,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:36,715 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:36,715 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:36,763 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:37,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:37,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:37,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:37,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:37,269 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:37,350 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:37,350 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:37,350 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:37,388 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:37,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:37,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:37,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:37,731 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:38,020 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:38,020 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:38,020 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:38,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:38,281 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:38,333 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:38,333 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:38,333 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:38,354 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:38,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:38,638 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:38,638 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:38,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:38,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:38,948 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:38,948 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:38,967 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:39,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:39,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:39,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:39,284 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:39,284 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:39,580 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:39,580 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:39,580 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:39,593 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:39,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:39,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:39,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:39,908 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:40,208 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:40,209 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:40,209 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:40,226 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:40,290 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:40,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:40,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:40,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:40,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:40,828 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:40,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:40,828 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:40,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:41,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:41,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:41,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:41,159 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:41,295 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:41,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:41,464 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:41,464 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:41,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:41,476 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:41,777 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:41,778 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:41,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:41,790 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:42,093 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:42,093 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:42,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:42,105 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:42,314 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:42,394 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:42,394 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:42,394 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:42,414 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:42,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:42,716 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:42,716 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:42,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:43,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:43,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:43,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:43,041 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:43,326 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:43,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:43,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:43,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:43,348 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:43,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:43,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:43,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:43,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:43,941 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:43,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:43,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:43,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:44,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:44,261 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:44,261 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:44,274 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:44,326 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:44,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:44,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:44,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:44,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:44,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:44,872 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:44,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:44,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:45,196 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:45,197 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:45,197 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:45,225 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:45,333 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:45,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:45,507 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:45,507 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:45,544 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:45,736 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:25:45,736 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:25:45,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:45,959 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:45,960 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:45,982 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:46,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:46,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:46,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:46,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:46,337 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:46,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:46,448 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:46,448 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:46,486 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:46,486 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:46,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:46,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:46,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:46,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:47,073 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:47,074 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:47,074 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:47,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:47,348 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:47,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:47,383 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:47,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:47,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:47,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:47,698 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:47,698 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:47,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:48,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:48,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:48,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:48,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:48,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:48,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:48,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:48,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:48,348 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:48,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:48,621 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:48,621 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:48,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:48,919 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:48,919 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:48,919 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:48,937 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:49,235 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:49,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:49,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:49,249 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:49,353 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:49,542 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:49,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:49,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:49,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:49,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:49,836 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:49,836 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:49,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:50,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:50,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:50,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:50,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:50,365 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:50,456 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:50,456 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:50,456 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:50,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:50,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:50,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:50,800 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:50,821 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:51,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:51,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:51,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:51,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:51,384 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:51,435 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:51,435 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:51,436 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:51,466 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:51,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:51,744 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:51,744 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:51,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:51,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:52,069 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:52,069 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:52,069 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:52,109 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:52,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:52,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:52,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:52,392 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:52,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:52,698 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:52,699 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:52,699 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:52,725 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:53,008 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:53,009 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:53,009 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:53,030 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:53,322 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:53,322 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:53,322 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:53,345 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:53,392 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:53,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:53,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:53,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:53,649 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:53,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:53,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:53,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:53,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:54,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:54,264 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:54,264 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:54,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:54,397 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:54,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:54,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:54,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:54,584 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:54,881 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:54,881 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:54,881 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:54,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:55,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:55,201 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:55,201 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:55,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:55,402 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:55,507 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:55,508 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:55,508 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:55,555 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:55,827 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:55,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:55,828 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:55,870 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:56,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:56,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:56,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:56,178 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:56,413 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:56,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:56,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:56,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:56,504 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:56,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:56,774 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:56,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:56,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:25:56,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:57,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:57,086 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:57,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:57,126 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:57,395 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:57,395 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:57,395 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:57,413 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:57,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:57,724 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:57,724 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:57,724 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:57,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:58,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:58,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:58,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:58,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:58,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:58,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:58,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:58,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:58,414 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:58,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:58,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:58,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:58,701 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:59,030 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:59,030 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:59,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:59,078 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:59,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:59,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:59,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:59,413 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:25:59,415 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:25:59,698 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:25:59,699 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:25:59,699 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:25:59,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:00,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:00,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:00,014 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:00,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:00,316 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:00,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:00,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:00,335 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:00,422 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:00,541 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:26:00,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:00,638 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:00,638 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:00,650 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:00,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:26:00,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:26:00,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:00,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:00,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:00,966 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:01,265 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:01,266 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:01,266 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:01,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:01,427 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:01,575 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:01,576 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:01,576 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:01,588 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:01,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:01,887 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:01,887 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:01,887 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:01,896 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:02,196 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:02,196 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:02,196 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:02,228 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:02,445 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:02,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:02,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:02,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:02,523 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:02,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:02,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:02,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:02,871 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:03,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:03,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:03,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:03,170 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:03,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:03,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:03,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:03,463 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:03,485 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:03,768 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:03,769 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:03,769 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:03,791 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:04,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:04,076 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:04,076 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:04,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:04,381 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:04,381 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:04,381 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:04,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:04,463 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:04,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:04,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:04,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:04,715 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:05,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:05,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:05,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:05,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:05,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:05,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:05,311 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:05,331 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:05,470 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:05,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:05,634 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:05,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:05,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:05,950 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:05,950 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:05,950 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:05,986 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:06,266 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:06,266 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:06,266 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:06,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:06,474 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:06,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:06,588 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:06,588 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:06,631 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:06,905 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:06,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:06,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:06,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:06,959 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:07,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:07,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:07,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:07,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:07,480 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:07,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:07,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:07,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:07,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:07,843 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:07,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:07,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:07,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:08,143 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:08,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:08,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:08,177 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:08,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:08,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:08,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:08,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:08,482 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:08,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:08,776 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:08,776 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:08,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:09,083 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:09,083 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:09,083 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:09,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:09,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:09,397 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:09,397 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:09,411 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:09,490 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:09,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:09,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:09,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:09,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:10,016 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:10,016 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:10,017 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:10,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:10,323 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:10,323 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:10,323 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:10,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:10,495 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:10,644 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:10,644 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:10,644 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:10,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:10,949 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:10,950 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:10,950 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:10,962 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:11,261 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:11,262 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:11,262 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:11,276 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:11,515 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:11,571 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:11,571 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:11,571 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:11,584 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:11,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:11,885 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:11,885 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:11,897 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:12,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:12,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:12,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:12,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:12,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:12,511 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:12,511 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:12,511 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:12,519 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:12,520 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:12,822 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:12,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:12,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:12,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:13,126 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:13,127 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:13,127 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:13,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:13,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:13,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:13,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:13,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:13,526 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:13,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:13,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:13,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:13,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:14,057 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:14,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:14,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:14,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:14,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:14,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:14,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:14,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:14,533 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:14,661 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:14,661 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:14,661 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:14,678 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:15,000 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:15,001 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:15,001 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:15,013 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:15,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:15,314 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:15,314 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:15,327 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:15,545 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:15,622 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:15,623 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:15,623 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:15,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:15,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:26:15,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:26:15,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:15,931 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:15,931 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:15,949 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:16,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:16,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:16,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:16,260 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:16,551 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:16,551 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:16,551 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:16,551 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:16,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:16,872 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:16,872 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:16,872 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:16,924 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:17,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:17,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:17,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:17,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:17,224 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:17,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:17,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:17,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:17,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:17,551 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:17,807 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:17,807 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:17,807 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:17,849 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:18,129 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:18,130 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:18,130 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:18,193 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:18,458 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:18,458 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:18,458 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:18,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:18,558 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:18,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:18,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:18,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:18,816 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:19,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:19,080 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:19,080 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:19,146 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:19,470 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:19,470 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:19,470 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:19,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:19,566 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:19,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:19,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:19,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:19,874 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:20,140 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:20,141 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:20,141 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:20,188 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:20,452 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:20,453 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:20,453 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:20,492 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:20,572 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:20,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:20,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:20,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:20,831 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:21,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:21,106 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:21,106 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:21,157 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:21,426 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:21,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:21,426 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:21,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:21,577 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:21,772 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:21,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:21,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:21,809 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:22,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:22,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:22,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:22,127 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:22,429 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:22,429 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:22,430 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:22,430 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:22,466 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:22,584 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:22,738 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:22,738 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:22,738 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:22,779 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:23,050 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:23,050 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:23,050 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:23,088 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:23,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:23,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:23,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:23,387 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:23,606 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:23,663 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:23,663 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:23,663 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:23,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:23,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:23,986 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:23,986 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:24,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:24,302 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:24,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:24,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:24,332 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:24,612 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:24,613 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:24,613 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:24,621 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:24,644 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:24,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:24,917 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:24,917 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:24,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:25,236 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:25,236 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:25,236 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:25,271 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:25,547 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:25,548 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:25,548 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:25,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:25,621 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:25,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:25,850 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:25,850 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:25,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:26,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:26,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:26,168 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:26,194 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:26,474 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:26,474 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:26,474 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:26,502 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:26,627 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:26,783 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:26,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:26,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:26,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:27,090 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:27,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:27,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:27,104 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:27,403 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:27,403 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:27,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:27,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:27,639 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:27,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:27,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:27,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:27,717 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:27,730 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:28,031 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:28,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:28,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:28,045 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:28,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:28,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:28,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:28,356 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:28,648 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:28,649 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:28,649 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:28,656 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:28,661 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:28,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:28,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:28,958 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:28,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:29,267 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:29,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:29,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:29,279 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:29,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:29,565 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:29,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:29,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:29,665 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:29,890 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:29,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:29,891 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:29,903 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:30,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:30,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:30,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:30,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:30,508 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:30,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:30,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:30,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:30,539 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:26:30,671 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:30,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:26:30,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:26:30,820 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:30,877 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:30,877 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:30,884 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:31,130 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:31,131 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:31,131 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:31,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:31,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:31,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:31,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:31,452 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:31,686 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:31,753 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:31,754 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:31,754 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:31,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:32,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:32,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:32,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:32,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:32,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:32,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:32,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:32,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:32,673 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:32,673 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:32,673 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:32,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:32,692 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:32,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:32,998 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:32,998 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:32,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:33,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:33,304 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:33,304 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:33,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:33,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:33,602 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:33,602 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:33,602 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:33,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:33,697 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:33,922 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:33,922 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:33,922 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:33,933 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:34,229 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:34,229 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:34,229 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:34,241 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:34,537 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:34,537 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:34,537 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:34,550 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:34,703 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:34,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:34,846 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:34,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:34,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:35,156 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:35,157 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:35,157 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:35,170 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:35,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:35,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:35,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:35,477 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:35,716 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:35,768 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:35,768 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:35,768 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:35,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:36,070 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:36,070 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:36,070 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:36,089 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:36,389 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:36,389 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:36,389 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:36,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:36,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:36,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:36,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:36,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:36,716 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:37,009 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:37,010 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:37,010 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:37,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:37,313 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:37,313 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:37,313 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:37,331 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:37,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:37,634 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:37,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:37,647 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:37,722 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:37,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:37,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:37,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:37,957 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:38,254 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:38,254 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:38,254 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:38,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:38,290 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:38,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:38,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:38,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:38,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:38,728 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:38,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:38,884 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:38,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:38,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:39,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:39,210 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:39,210 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:39,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:39,540 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:39,540 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:39,540 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:39,591 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:39,732 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:39,861 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:39,861 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:39,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:39,914 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:40,194 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:40,195 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:40,195 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:40,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:40,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:40,521 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:40,521 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:40,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:40,738 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:40,865 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:40,865 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:40,865 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:40,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:41,165 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:41,165 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:41,165 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:41,222 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:41,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:41,235 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:41,235 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:41,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:41,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:41,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:41,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:41,521 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:41,749 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:41,790 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:41,791 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:41,791 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:41,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:42,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:42,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:42,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:42,185 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:42,428 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:42,429 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:42,429 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:42,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:42,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:42,761 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:42,761 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:42,766 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:42,810 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:43,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:43,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:43,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:43,150 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:43,405 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:43,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:43,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:43,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:43,463 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:43,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:43,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:43,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:43,776 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:43,777 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:44,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:44,047 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:44,047 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:44,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:44,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:44,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:44,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:44,479 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:44,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:44,740 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:44,740 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:44,777 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:44,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:45,122 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:45,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:45,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:45,184 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:45,470 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:45,470 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:45,470 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:45,529 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:45,747 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:26:45,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:26:45,785 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:45,794 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:45,888 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:45,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:45,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:46,106 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:46,106 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:46,106 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:46,176 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:46,437 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:46,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:46,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:46,509 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:46,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:46,802 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:46,802 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:46,802 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:46,851 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:47,122 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:47,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:47,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:47,166 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:47,438 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:47,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:47,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:47,476 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:47,780 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:47,780 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:47,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:47,803 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:47,814 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:48,097 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:48,097 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:48,097 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:48,135 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:48,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:48,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:48,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:48,500 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:48,528 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:48,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:48,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:48,800 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:48,817 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:48,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:49,119 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:49,120 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:49,120 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:49,132 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:49,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:49,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:49,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:49,446 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:49,732 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:49,732 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:49,732 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:49,750 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:49,818 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:50,053 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:50,054 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:50,054 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:50,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:50,360 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:50,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:50,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:50,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:50,668 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:50,668 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:50,668 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:50,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:50,826 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:51,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:51,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:51,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:51,035 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:51,324 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:51,325 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:51,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:51,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:51,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:51,629 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:51,630 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:51,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:51,841 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:51,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:51,931 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:51,931 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:51,949 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:52,244 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:52,244 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:52,244 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:52,263 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:52,562 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:52,563 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:52,563 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:52,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:52,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:52,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:52,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:52,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:52,888 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:53,181 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:53,181 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:53,181 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:53,199 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:53,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:53,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:53,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:53,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:53,512 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:53,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:53,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:53,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:53,826 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:53,853 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:54,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:54,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:54,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:54,137 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:54,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:54,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:54,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:54,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:54,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:54,749 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:54,749 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:54,762 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:54,857 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:55,060 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:55,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:55,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:55,073 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:55,370 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:55,371 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:55,371 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:55,385 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:55,685 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:55,685 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:55,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:55,698 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:55,861 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:55,993 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:55,994 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:55,994 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:56,008 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:56,298 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:56,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:56,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:56,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:56,609 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:56,610 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:56,610 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:56,623 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:56,873 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:56,920 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:56,920 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:56,920 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:56,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:57,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:57,231 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:57,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:57,243 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:57,540 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:57,540 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:57,540 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:57,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:57,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:57,847 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:57,847 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:57,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:57,873 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:58,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:58,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:58,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:58,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:58,452 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:58,452 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:58,452 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:58,470 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:58,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:58,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:58,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:58,773 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:26:58,785 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:58,879 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:26:59,087 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:59,087 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:59,087 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:59,099 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:59,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:59,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:59,396 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:59,408 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:59,702 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:26:59,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:26:59,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:26:59,711 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:26:59,885 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:00,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:00,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:00,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:00,023 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:00,326 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:00,326 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:00,326 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:00,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:00,540 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:27:00,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:00,642 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:00,642 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:00,662 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:00,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:27:00,749 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:27:00,889 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:00,955 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:00,955 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:00,955 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:00,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:01,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:01,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:01,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:01,293 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:01,589 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:01,590 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:01,590 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:01,626 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:01,900 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:01,901 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:01,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:01,909 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:01,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:02,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:02,213 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:02,213 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:02,229 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:02,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:02,528 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:02,528 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:02,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:02,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:02,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:02,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:02,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:02,909 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:03,177 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:03,178 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:03,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:03,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:03,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:03,496 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:03,496 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:03,535 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:03,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:03,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:03,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:03,804 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:03,834 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:03,919 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:04,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:04,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:04,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:04,149 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:04,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:04,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:04,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:04,456 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:04,744 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:04,744 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:04,744 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:04,787 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:04,926 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:05,064 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:05,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:05,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:05,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:05,376 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:05,376 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:05,376 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:05,402 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:05,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:05,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:05,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:05,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:05,938 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:06,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:06,038 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:06,038 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:06,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:06,426 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:06,426 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:06,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:06,474 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:06,737 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:06,737 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:06,737 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:06,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:06,944 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:07,059 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:07,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:07,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:07,116 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:07,369 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:07,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:07,369 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:07,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:07,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:07,698 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:07,698 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:07,770 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:07,956 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:08,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:08,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:08,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:08,098 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:08,324 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:08,324 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:08,324 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:08,397 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:08,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:08,634 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:08,634 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:08,708 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:08,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:08,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:08,957 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:08,958 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:08,965 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:09,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:09,271 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:09,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:09,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:09,333 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:09,584 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:09,584 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:09,584 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:09,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:09,899 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:09,900 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:09,900 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:09,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:09,966 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:10,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:10,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:10,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:10,302 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:10,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:10,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:10,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:10,597 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:10,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:10,848 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:10,848 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:10,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:10,970 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:11,162 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:11,163 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:11,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:11,184 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:11,490 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:11,491 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:11,491 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:11,524 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:11,862 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:11,863 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:11,863 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:11,900 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:11,976 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:12,176 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:12,177 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:12,177 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:12,204 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:12,488 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:12,489 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:12,489 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:12,512 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:12,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:12,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:12,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:12,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:12,982 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:13,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:13,109 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:13,109 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:13,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:13,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:13,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:13,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:13,430 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:13,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:13,731 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:13,731 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:13,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:13,994 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:14,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:14,032 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:14,032 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:14,032 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:14,052 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:14,358 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:14,359 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:14,359 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:14,371 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:14,664 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:14,664 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:14,665 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:14,677 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:15,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:15,004 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:15,004 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:15,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:15,024 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:15,315 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:15,315 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:15,315 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:15,336 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:15,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:15,639 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:15,639 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:15,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:15,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:27:15,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:27:15,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:15,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:15,957 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:15,979 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:16,004 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:16,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:16,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:16,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:16,292 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:16,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:16,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:16,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:16,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:16,895 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:16,895 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:16,895 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:16,940 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:17,012 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:17,209 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:17,209 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:17,209 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:17,245 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:17,524 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:17,525 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:17,525 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:17,562 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:17,831 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:17,831 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:17,831 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:17,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:18,018 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:18,152 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:18,153 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:18,153 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:18,186 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:18,469 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:18,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:18,470 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:18,493 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:18,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:18,785 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:18,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:18,819 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:19,036 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:19,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:19,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:19,099 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:19,099 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:19,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:19,413 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:19,413 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:19,413 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:19,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:19,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:19,720 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:19,720 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:19,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:20,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:20,028 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:20,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:20,036 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:20,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:20,341 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:20,341 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:20,341 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:20,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:20,651 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:20,652 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:20,652 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:20,665 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:20,951 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:20,951 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:20,951 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:20,970 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:21,037 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:21,360 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:21,360 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:21,360 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:21,389 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:21,676 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:21,676 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:21,676 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:21,700 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:21,991 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:21,991 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:21,991 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:22,043 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:22,043 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:22,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:22,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:22,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:22,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:22,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:22,615 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:22,615 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:22,655 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:22,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:22,929 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:22,929 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:22,975 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:23,048 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:23,248 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:23,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:23,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:23,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:23,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:23,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:23,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:23,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:23,878 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:23,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:23,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:23,911 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:24,054 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:24,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:24,182 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:24,182 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:24,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:24,211 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:24,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:24,501 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:24,501 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:24,515 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:24,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:24,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:24,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:24,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:25,063 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:25,121 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:25,122 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:25,122 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:25,134 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:25,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:25,427 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:25,427 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:25,447 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:25,747 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:25,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:25,748 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:25,760 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:26,045 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:26,045 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:26,045 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:26,064 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:26,064 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:26,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:26,355 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:26,355 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:26,375 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:26,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:26,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:26,684 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:26,697 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:26,992 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:26,992 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:26,992 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:27,011 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:27,064 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:27,315 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:27,316 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:27,316 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:27,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:27,633 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:27,633 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:27,633 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:27,646 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:27,944 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:27,945 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:27,945 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:27,958 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:28,071 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:28,256 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:28,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:28,257 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:28,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:28,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:28,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:28,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:28,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:28,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:28,887 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:28,887 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:28,898 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:29,079 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:29,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:29,203 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:29,203 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:29,203 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:29,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:29,521 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:29,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:29,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:29,564 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:29,848 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:29,848 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:29,848 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:29,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:30,093 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:30,171 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:30,171 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:30,171 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:30,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:30,497 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:30,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:30,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:30,544 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:30,544 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:27:30,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:27:30,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:27:30,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:30,884 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:30,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:30,952 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:31,100 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:31,273 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:31,273 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:31,273 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:31,337 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:31,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:31,645 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:31,645 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:31,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:31,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:31,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:31,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:32,066 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:32,106 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:32,324 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:32,325 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:32,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:32,394 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:32,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:32,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:32,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:32,715 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:32,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:32,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:32,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:33,047 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:33,115 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:33,382 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:33,382 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:33,383 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:33,465 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:33,818 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:33,818 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:33,818 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:33,898 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:34,123 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:34,293 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:34,330 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:34,330 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:34,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:34,404 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:34,693 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:34,694 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:34,694 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:34,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:35,135 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:35,148 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:35,148 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:35,149 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:35,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:35,611 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:35,611 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:35,611 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:35,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:36,089 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:36,090 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:36,090 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:36,128 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:36,141 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:36,543 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:36,543 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:36,543 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:36,599 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:36,857 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:36,858 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:36,858 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:36,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:37,153 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:37,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:37,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:37,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:37,197 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:37,480 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:37,481 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:37,481 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:37,493 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:37,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:37,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:37,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:37,804 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:38,102 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:38,103 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:38,103 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:38,114 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:38,153 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:38,403 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:38,403 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:38,403 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:38,421 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:38,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:38,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:38,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:38,737 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:39,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:39,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:39,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:39,065 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:39,161 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:39,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:39,346 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:39,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:39,346 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:39,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:39,653 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:39,653 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:39,653 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:39,698 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:39,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:39,970 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:39,970 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:40,016 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:40,166 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:40,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:40,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:40,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:40,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:40,596 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:40,596 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:40,596 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:40,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:40,910 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:40,911 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:40,911 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:40,937 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:41,180 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:41,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:41,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:41,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:41,237 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:41,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:41,522 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:41,522 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:41,541 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:41,846 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:41,846 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:41,846 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:41,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:42,159 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:42,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:42,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:42,172 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:42,180 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:42,470 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:42,470 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:42,470 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:42,482 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:42,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:42,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:42,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:42,790 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:43,094 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:43,094 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:43,094 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:43,107 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:43,187 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:43,404 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:43,405 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:43,405 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:43,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:43,714 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:43,715 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:43,715 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:43,727 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:44,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:44,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:44,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:44,041 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:44,191 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:44,342 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:44,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:44,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:44,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:44,355 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:44,656 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:44,657 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:44,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:44,668 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:44,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:44,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:44,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:44,984 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:45,204 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:45,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:45,284 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:45,284 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:45,299 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:45,583 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:45,583 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:45,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:45,602 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:45,752 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:27:45,753 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:27:45,908 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:45,908 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:45,909 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:45,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:46,210 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:46,211 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:46,211 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:46,211 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:46,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:46,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:46,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:46,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:46,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:46,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:46,838 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:46,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:46,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:47,143 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:47,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:47,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:47,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:47,211 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:47,464 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:47,465 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:47,465 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:47,480 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:47,775 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:47,776 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:47,776 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:47,788 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:48,081 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:48,082 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:48,082 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:48,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:48,219 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:48,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:48,390 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:48,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:48,402 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:48,703 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:48,704 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:48,704 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:48,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:49,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:49,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:49,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:49,025 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:49,238 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:49,327 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:49,327 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:49,328 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:49,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:49,357 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:49,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:49,639 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:49,639 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:49,666 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:49,954 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:49,954 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:49,954 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:49,993 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:50,250 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:50,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:50,265 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:50,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:50,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:50,571 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:50,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:50,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:50,621 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:50,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:50,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:50,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:50,931 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:51,201 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:51,201 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:51,201 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:51,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:51,253 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:51,604 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:51,604 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:51,605 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:51,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:51,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:51,914 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:51,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:51,931 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:52,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:52,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:52,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:52,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:52,253 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:52,531 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:52,531 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:52,531 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:52,549 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:52,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:52,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:52,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:52,857 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:53,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:53,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:53,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:53,196 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:53,255 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:53,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:53,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:53,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:53,528 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:53,801 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:53,801 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:53,801 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:53,862 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:54,129 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:54,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:54,130 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:54,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:54,265 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:54,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:54,459 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:54,459 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:54,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:54,533 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:54,788 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:54,788 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:54,788 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:54,861 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:55,128 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:55,129 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:55,129 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:55,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:55,268 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:55,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:55,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:55,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:55,528 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:55,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:55,783 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:55,783 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:55,863 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:56,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:56,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:56,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:56,212 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:56,275 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:56,455 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:56,456 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:56,456 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:56,530 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:56,792 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:56,792 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:56,792 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:56,856 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:57,133 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:57,133 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:57,133 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:57,200 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:57,283 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:57,465 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:57,467 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:57,467 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:57,515 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:57,871 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:57,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:57,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:57,904 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:58,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:58,276 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:58,276 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:58,285 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:58,330 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:58,689 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:58,689 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:58,689 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:58,747 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:59,082 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:59,082 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:59,082 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:59,152 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:27:59,295 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:27:59,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:27:59,532 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:27:59,532 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:27:59,532 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:27:59,596 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:00,001 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:00,001 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:00,002 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:00,050 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:00,307 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:00,320 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:00,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:00,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:00,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:00,544 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:28:00,624 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:00,624 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:00,624 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:00,649 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:00,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:28:00,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:28:00,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:00,943 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:00,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:00,976 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:01,269 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:01,270 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:01,270 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:01,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:01,307 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:01,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:01,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:01,574 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:01,594 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:01,892 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:01,893 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:01,893 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:01,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:02,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:02,202 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:02,202 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:02,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:02,312 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:02,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:02,505 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:02,505 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:02,524 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:02,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:02,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:02,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:02,844 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:03,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:03,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:03,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:03,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:03,318 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:03,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:03,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:03,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:03,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:03,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:03,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:03,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:03,778 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:04,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:04,072 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:04,072 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:04,093 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:04,347 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:04,388 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:04,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:04,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:04,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:04,715 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:04,715 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:04,715 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:04,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:04,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:05,028 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:05,029 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:05,029 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:05,081 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:05,336 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:05,337 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:05,337 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:05,347 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:05,366 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:05,653 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:05,653 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:05,653 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:05,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:05,965 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:05,965 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:05,966 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:06,009 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:06,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:06,278 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:06,278 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:06,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:06,348 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:06,597 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:06,597 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:06,597 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:06,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:06,909 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:06,910 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:06,910 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:06,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:07,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:07,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:07,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:07,234 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:07,354 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:07,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:07,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:07,535 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:07,546 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:07,836 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:07,836 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:07,836 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:07,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:08,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:08,163 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:08,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:08,177 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:08,361 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:08,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:08,468 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:08,468 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:08,487 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:08,790 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:08,790 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:08,790 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:08,802 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:09,101 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:09,101 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:09,101 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:09,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:09,373 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:09,411 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:09,411 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:09,411 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:09,423 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:09,720 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:09,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:09,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:09,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:09,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:10,031 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:10,031 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:10,031 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:10,044 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:10,343 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:10,343 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:10,343 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:10,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:10,373 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:10,650 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:10,650 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:10,650 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:10,662 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:10,961 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:10,961 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:10,961 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:10,972 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:11,270 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:11,270 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:11,270 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:11,289 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:11,381 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:11,593 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:11,594 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:11,594 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:11,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:11,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:11,907 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:11,907 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:11,918 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:12,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:12,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:12,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:12,230 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:12,387 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:12,527 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:12,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:12,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:12,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:12,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:12,834 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:12,834 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:12,847 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:13,138 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:13,138 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:13,138 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:13,157 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:13,408 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:13,461 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:13,462 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:13,462 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:13,475 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:13,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:13,765 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:13,765 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:13,794 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:14,092 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:14,092 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:14,093 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:14,105 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:14,405 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:14,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:14,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:14,414 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:14,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:14,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:14,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:14,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:14,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:14,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:15,075 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:15,075 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:15,075 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:15,089 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:15,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:15,387 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:15,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:15,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:15,415 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:15,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:15,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:15,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:15,719 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:15,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:28:15,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:28:16,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:16,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:16,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:16,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:16,334 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:16,335 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:16,335 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:16,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:16,422 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:16,641 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:16,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:16,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:16,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:17,012 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:17,012 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:17,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:17,077 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:17,379 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:17,380 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:17,380 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:17,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:17,443 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:17,729 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:17,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:17,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:17,804 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:18,041 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:18,041 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:18,041 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:18,125 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:18,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:18,419 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:18,419 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:18,443 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:18,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:18,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:18,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:18,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:18,823 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:19,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:19,119 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:19,119 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:19,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:19,448 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:19,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:19,475 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:19,475 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:19,539 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:19,860 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:19,861 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:19,861 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:19,861 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:19,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:20,247 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:20,247 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:20,247 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:20,319 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:20,456 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:20,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:20,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:20,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:20,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:21,160 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:21,160 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:21,160 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:21,240 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:21,466 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:21,617 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:21,617 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:21,617 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:21,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:22,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:22,048 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:22,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:22,112 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:22,478 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:22,495 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:22,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:22,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:22,553 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:22,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:22,894 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:22,894 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:22,946 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:23,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:23,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:23,287 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:23,344 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:23,487 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:23,704 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:23,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:23,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:23,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:24,081 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:24,081 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:24,081 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:24,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:24,439 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:24,439 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:24,439 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:24,502 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:24,502 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:24,842 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:24,843 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:24,843 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:24,910 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:24,910 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:25,158 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:25,159 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:25,159 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:25,202 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:25,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:25,476 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:25,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:25,503 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:25,503 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:25,782 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:25,798 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:25,798 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:25,824 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:26,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:26,109 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:26,109 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:26,124 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:26,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:26,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:26,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:26,436 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:26,504 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:26,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:26,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:26,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:26,754 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:27,049 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:27,049 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:27,049 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:27,067 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:27,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:27,373 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:27,373 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:27,386 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:27,509 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:27,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:27,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:27,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:27,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:27,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:27,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:27,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:28,016 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:28,299 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:28,299 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:28,299 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:28,317 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:28,530 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:28,619 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:28,619 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:28,619 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:28,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:28,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:28,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:28,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:28,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:29,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:29,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:29,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:29,258 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:29,542 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:29,561 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:29,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:29,562 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:29,573 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:29,879 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:29,879 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:29,879 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:29,891 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:30,182 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:30,183 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:30,183 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:30,183 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:30,195 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:30,498 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:30,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:30,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:30,511 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:30,542 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:30,545 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:28:30,756 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:28:30,756 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:28:30,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:30,890 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:30,890 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:30,899 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:31,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:31,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:31,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:31,137 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:31,431 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:31,431 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:31,431 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:31,450 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:31,550 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:31,750 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:31,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:31,751 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:31,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:32,061 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:32,061 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:32,061 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:32,074 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:32,368 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:32,369 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:32,369 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:32,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:32,556 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:32,670 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:32,670 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:32,670 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:32,689 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:32,984 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:32,984 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:32,984 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:33,003 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:33,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:33,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:33,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:33,313 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:33,574 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:33,615 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:33,616 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:33,616 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:33,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:33,926 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:33,926 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:33,926 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:33,939 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:34,238 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:34,239 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:34,239 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:34,252 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:34,553 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:34,553 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:34,553 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:34,569 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:34,574 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:34,866 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:34,867 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:34,867 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:34,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:35,167 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:35,167 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:35,167 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:35,186 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:35,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:35,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:35,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:35,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:35,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:35,581 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:35,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:35,809 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:35,809 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:35,822 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:36,122 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:36,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:36,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:36,137 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:36,432 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:36,432 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:36,432 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:36,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:36,587 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:36,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:36,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:36,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:36,768 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:37,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:37,071 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:37,071 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:37,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:37,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:37,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:37,386 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:37,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:37,599 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:37,699 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:37,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:37,700 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:37,729 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:38,007 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:38,007 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:38,007 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:38,074 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:38,320 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:38,320 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:38,320 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:38,391 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:38,611 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:38,666 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:38,666 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:38,666 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:38,736 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:39,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:39,027 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:39,028 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:39,095 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:39,398 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:39,398 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:39,398 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:39,468 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:39,619 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:39,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:39,771 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:39,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:39,833 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:40,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:40,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:40,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:40,173 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:40,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:40,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:40,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:40,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:40,492 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:40,624 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:40,762 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:40,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:40,763 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:40,804 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:41,077 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:41,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:41,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:41,123 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:41,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:41,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:41,396 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:41,457 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:41,632 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:41,822 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:41,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:41,823 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:41,885 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:42,201 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:42,202 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:42,202 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:42,247 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:42,565 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:42,565 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:42,565 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:42,607 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:42,634 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:42,892 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:42,892 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:42,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:42,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:43,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:43,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:43,244 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:43,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:43,567 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:43,567 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:43,567 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:43,624 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:43,634 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:43,914 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:43,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:43,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:43,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:44,252 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:44,252 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:44,253 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:44,308 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:44,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:44,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:44,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:44,632 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:44,636 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:45,048 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:45,048 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:45,048 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:45,097 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:45,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:45,448 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:45,448 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:45,448 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:45,493 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:45,639 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:45,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:28:45,758 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:28:45,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:45,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:45,916 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:45,990 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:46,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:46,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:46,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:46,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:46,587 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:46,587 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:46,587 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:46,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:46,640 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:46,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:46,902 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:46,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:46,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:47,214 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:47,214 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:47,214 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:47,226 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:47,526 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:47,527 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:47,527 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:47,540 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:47,646 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:47,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:47,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:47,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:47,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:48,142 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:48,143 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:48,143 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:48,155 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:48,452 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:48,452 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:48,452 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:48,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:48,651 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:48,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:48,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:48,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:48,774 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:49,072 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:49,073 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:49,073 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:49,085 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:49,388 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:49,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:49,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:49,401 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:49,663 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:49,700 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:49,700 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:49,701 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:49,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:50,015 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:50,016 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:50,016 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:50,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:50,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:50,310 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:50,310 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:50,329 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:50,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:50,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:50,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:50,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:50,641 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:50,663 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:50,937 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:50,938 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:50,938 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:50,951 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:51,248 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:51,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:51,249 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:51,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:51,556 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:51,557 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:51,557 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:51,568 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:51,669 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:51,862 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:51,862 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:51,862 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:51,877 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:52,177 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:52,178 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:52,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:52,190 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:52,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:52,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:52,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:52,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:52,674 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:52,800 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:52,800 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:52,800 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:52,812 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:53,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:53,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:53,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:53,130 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:53,430 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:53,430 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:53,430 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:53,442 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:53,681 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:53,739 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:53,739 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:53,739 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:53,753 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:54,046 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:54,046 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:54,046 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:54,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:54,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:54,351 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:54,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:54,370 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:54,666 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:54,667 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:54,667 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:54,681 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:54,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:54,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:54,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:54,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:55,003 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:55,321 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:55,321 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:55,321 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:55,382 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:55,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:55,638 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:55,638 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:55,638 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:28:55,688 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:55,688 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:55,975 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:55,976 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:55,976 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:56,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:56,294 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:56,294 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:56,294 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:56,364 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:56,631 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:56,632 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:56,632 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:56,704 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:56,704 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:56,978 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:56,979 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:56,979 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:57,047 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:57,301 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:57,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:57,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:57,368 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:57,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:57,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:57,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:57,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:57,709 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:57,964 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:57,965 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:57,965 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:58,017 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:58,325 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:58,325 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:58,325 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:58,383 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:58,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:58,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:58,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:58,719 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:58,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:59,131 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:59,131 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:59,131 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:59,179 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:59,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:59,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:59,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:59,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:28:59,732 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:28:59,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:28:59,804 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:28:59,804 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:28:59,855 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:00,124 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:00,124 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:00,124 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:00,162 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:00,440 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:00,440 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:00,440 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:00,454 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:00,546 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:29:00,744 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:00,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:00,755 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:00,755 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:00,755 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:00,763 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:29:00,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:00,767 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:29:01,066 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:01,066 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:01,066 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:01,078 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:01,373 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:01,373 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:01,373 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:01,392 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:01,694 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:01,695 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:01,695 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:01,707 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:01,744 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:02,009 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:02,009 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:02,009 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:02,021 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:02,319 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:02,320 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:02,320 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:02,331 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:02,630 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:02,631 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:02,631 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:02,642 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:02,750 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:02,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:02,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:02,943 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:02,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:03,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:03,255 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:03,255 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:03,267 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:03,571 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:03,572 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:03,572 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:03,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:03,755 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:03,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:03,902 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:03,902 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:03,963 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:04,245 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:04,245 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:04,246 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:04,304 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:04,576 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:04,576 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:04,576 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:04,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:04,766 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:04,905 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:04,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:04,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:04,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:05,243 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:05,243 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:05,243 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:05,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:05,577 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:05,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:05,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:05,660 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:05,770 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:05,939 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:05,940 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:05,940 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:05,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:06,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:06,276 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:06,276 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:06,276 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:06,335 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:06,637 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:06,637 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:06,637 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:06,696 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:06,781 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:07,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:07,058 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:07,058 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:07,119 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:07,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:07,569 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:07,569 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:07,616 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:07,789 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:07,985 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:07,988 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:07,988 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:08,033 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:08,363 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:08,363 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:08,363 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:08,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:08,675 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:08,675 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:08,675 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:08,694 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:08,795 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:08,996 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:08,996 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:08,996 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:09,010 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:09,306 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:09,307 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:09,307 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:09,322 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:09,601 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:09,601 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:09,601 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:09,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:09,801 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:09,924 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:09,925 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:09,925 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:09,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:10,234 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:10,234 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:10,234 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:10,249 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:10,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:10,544 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:10,544 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:10,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:10,813 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:10,849 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:10,849 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:10,849 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:10,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:11,168 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:11,168 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:11,169 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:11,169 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:11,180 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:11,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:11,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:11,479 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:11,491 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:11,776 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:11,776 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:11,776 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:11,795 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:11,813 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:12,087 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:12,087 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:12,087 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:12,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:12,406 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:12,406 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:12,406 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:12,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:12,717 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:12,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:12,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:12,760 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:12,820 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:13,023 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:13,023 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:13,024 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:13,051 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:13,335 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:13,336 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:13,336 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:13,367 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:13,645 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:13,646 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:13,646 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:13,698 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:13,826 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:13,957 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:13,957 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:13,958 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:14,005 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:14,270 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:14,270 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:14,270 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:14,311 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:14,582 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:14,582 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:14,583 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:14,601 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:14,838 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:14,891 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:14,891 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:14,892 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:14,953 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:15,199 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:15,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:15,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:15,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:15,508 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:15,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:15,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:15,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:15,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:29:15,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:29:15,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:15,838 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:15,896 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:15,896 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:15,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:16,134 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:16,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:16,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:16,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:16,450 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:16,451 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:16,451 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:16,451 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:16,479 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:16,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:16,764 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:16,764 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:16,800 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:16,839 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:17,076 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:17,077 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:17,077 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:17,103 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:17,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:17,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:17,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:17,405 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:17,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:17,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:17,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:17,721 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:17,845 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:18,017 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:18,019 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:18,019 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:18,032 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:18,329 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:18,329 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:18,329 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:18,341 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:18,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:18,641 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:18,641 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:18,653 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:18,863 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:18,953 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:18,953 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:18,953 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:18,968 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:19,264 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:19,264 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:19,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:19,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:19,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:19,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:19,574 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:19,587 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:19,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:19,876 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:19,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:19,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:19,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:20,197 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:20,197 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:20,197 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:20,209 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:20,499 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:20,499 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:20,499 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:20,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:20,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:20,818 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:20,818 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:20,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:20,876 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:21,130 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:21,130 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:21,130 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:21,142 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:21,445 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:21,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:21,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:21,459 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:21,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:21,746 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:21,746 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:21,746 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:21,765 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:21,885 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:22,067 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:22,067 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:22,067 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:22,094 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:22,399 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:22,400 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:22,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:22,412 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:22,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:22,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:22,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:22,716 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:22,888 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:23,011 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:23,011 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:23,011 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:23,029 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:23,330 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:23,331 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:23,331 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:23,342 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:23,640 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:23,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:23,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:23,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:23,900 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:23,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:23,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:23,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:23,962 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:24,254 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:24,254 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:24,254 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:24,273 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:24,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:24,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:24,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:24,583 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:24,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:24,893 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:24,893 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:24,901 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:24,932 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:25,215 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:25,215 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:25,215 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:25,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:25,538 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:25,538 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:25,538 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:25,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:25,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:25,871 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:25,871 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:25,901 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:25,942 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:26,212 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:26,212 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:26,212 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:26,281 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:26,544 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:26,545 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:26,545 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:26,545 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:26,615 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:26,887 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:26,887 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:26,888 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:26,902 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:26,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:27,272 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:27,272 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:27,272 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:27,349 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:27,667 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:27,667 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:27,667 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:27,749 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:27,911 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:28,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:28,047 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:28,047 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:28,118 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:28,424 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:28,424 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:28,424 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:28,496 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:28,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:28,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:28,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:28,914 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:28,926 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:29,387 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:29,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:29,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:29,457 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:29,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:29,840 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:29,840 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:29,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:29,920 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:30,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:30,291 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:30,291 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:30,351 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:30,547 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:29:30,725 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:30,726 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:30,726 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:30,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:29:30,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:30,786 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:29:30,925 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:31,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:31,114 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:31,114 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:31,176 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:31,479 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:31,479 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:31,479 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:31,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:31,804 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:31,804 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:31,804 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:31,804 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:31,849 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:31,929 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:32,145 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:32,146 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:32,146 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:32,189 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:32,471 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:32,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:32,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:32,534 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:32,816 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:32,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:32,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:32,881 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:32,937 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:33,177 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:33,178 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:33,178 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:33,231 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:33,494 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:33,495 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:33,495 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:33,542 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:33,795 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:33,795 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:33,795 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:33,843 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:33,946 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:34,118 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:34,119 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:34,119 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:34,160 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:34,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:34,434 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:34,434 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:34,479 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:34,743 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:34,743 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:34,743 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:34,777 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:34,967 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:35,047 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:35,047 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:35,047 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:35,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:35,367 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:35,368 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:35,368 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:35,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:35,683 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:35,683 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:35,683 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:35,695 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:35,979 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:35,998 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:35,998 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:35,998 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:36,011 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:36,310 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:36,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:36,311 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:36,323 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:36,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:36,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:36,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:36,640 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:36,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:36,936 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:36,936 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:36,936 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:36,948 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:36,979 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:37,249 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:37,250 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:37,250 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:37,262 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:37,564 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:37,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:37,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:37,578 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:37,875 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:37,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:37,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:37,889 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:37,987 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:38,185 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:38,185 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:38,185 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:38,204 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:38,506 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:38,506 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:38,506 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:38,519 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:38,817 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:38,817 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:38,817 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:38,830 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:38,995 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:39,132 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:39,132 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:39,132 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:39,144 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:39,447 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:39,447 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:39,447 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:39,464 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:39,759 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:39,760 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:39,760 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:39,773 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:40,009 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:40,071 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:40,072 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:40,072 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:40,084 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:40,388 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:40,388 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:40,388 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:40,400 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:40,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:40,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:40,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:40,706 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:41,004 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:41,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:41,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:41,013 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:41,014 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:41,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:41,319 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:41,319 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:41,332 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:41,627 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:41,628 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:41,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:41,639 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:41,929 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:41,929 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:41,929 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:41,947 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:41,948 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:42,013 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:42,252 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:42,252 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:42,253 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:42,266 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:42,560 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:42,561 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:42,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:42,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:42,859 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:42,859 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:42,859 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:42,878 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:43,015 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:43,186 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:43,186 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:43,186 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:43,198 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:43,496 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:43,497 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:43,497 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:43,508 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:43,807 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:43,807 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:43,807 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:43,819 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:44,026 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:44,117 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:44,118 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:44,118 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:44,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:44,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:44,434 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:44,434 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:44,443 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:44,749 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:44,750 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:44,750 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:44,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:45,042 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:45,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:45,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:45,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:45,116 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:45,418 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:45,418 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:45,418 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:45,431 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:45,727 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:45,728 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:45,728 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:45,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:29:45,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:45,780 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:29:46,041 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:46,042 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:46,042 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:46,049 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:46,095 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:46,351 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:46,351 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:46,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:46,415 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:46,657 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:46,658 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:46,658 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:46,724 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:46,970 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:46,971 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:46,971 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:46,971 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:47,022 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:47,055 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:47,280 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:47,281 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:47,281 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:47,353 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:47,590 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:47,591 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:47,591 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:47,652 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:47,903 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:47,904 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:47,904 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:47,965 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:48,059 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:48,216 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:48,216 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:48,216 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:48,296 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:48,693 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:48,693 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:48,693 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:48,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:49,071 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:49,085 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:49,085 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:49,085 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:49,167 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:49,452 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:49,453 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:49,453 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:49,541 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:49,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:49,851 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:49,851 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:49,919 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:50,075 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:50,261 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:50,262 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:50,262 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:50,334 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:50,639 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:50,640 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:50,640 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:50,713 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:51,040 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:51,040 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:51,040 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:51,079 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:51,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:51,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:51,387 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:51,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:51,453 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:51,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:51,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:51,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:51,780 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:52,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:52,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:52,079 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:52,079 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:52,087 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:52,136 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:52,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:52,506 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:52,506 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:52,563 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:52,822 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:52,822 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:52,822 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:52,884 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:53,109 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:53,161 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:53,161 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:53,161 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:53,224 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:53,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:53,476 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:53,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:53,529 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:53,802 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:53,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:53,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:53,850 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:54,114 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:54,114 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:54,115 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:54,115 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:54,158 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:54,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:54,476 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:54,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:54,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:54,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:54,814 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:54,814 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:54,868 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:55,126 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:55,149 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:55,149 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:55,150 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:55,215 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:55,492 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:55,492 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:55,492 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:55,564 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:55,839 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:55,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:55,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:55,887 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:56,132 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:56,233 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:56,233 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:56,233 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:56,290 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:56,579 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:56,580 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:56,580 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:56,609 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:56,901 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:56,901 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:56,901 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:56,949 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:57,147 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:57,204 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:57,204 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:57,204 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:57,204 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:29:57,232 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:57,518 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:57,518 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:57,518 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:57,537 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:57,833 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:57,833 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:57,833 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:57,852 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:58,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:58,155 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:58,155 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:58,163 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:58,169 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:58,468 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:58,469 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:58,469 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:58,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:58,776 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:58,776 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:58,777 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:58,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:59,086 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:59,086 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:59,086 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:59,101 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:59,167 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:29:59,397 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:59,397 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:59,397 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:59,410 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:29:59,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:29:59,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:29:59,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:29:59,722 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:00,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:00,027 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:00,027 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:00,039 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:00,174 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:00,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:00,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:00,346 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:00,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:00,554 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:30:00,660 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:00,660 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:00,660 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:00,672 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:00,765 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:30:00,765 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:30:00,974 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:00,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:00,975 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:00,987 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:01,185 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:01,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:01,287 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:01,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:01,300 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:01,598 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:01,598 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:01,599 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:01,611 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:01,925 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:01,926 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:01,926 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:01,938 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:02,197 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:02,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:02,232 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:02,232 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:02,232 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:02,251 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:02,560 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:02,560 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:02,561 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:02,572 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:02,877 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:02,878 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:02,878 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:02,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:03,192 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:03,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:03,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:03,201 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:03,202 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:03,515 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:03,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:03,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:03,527 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:03,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:03,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:03,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:03,838 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:04,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:04,136 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:04,136 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:04,148 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:04,202 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:04,446 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:04,446 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:04,446 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:04,458 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:04,758 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:04,759 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:04,759 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:04,790 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:05,067 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:05,067 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:05,067 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:05,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:05,212 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:05,386 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:05,386 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:05,387 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:05,425 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:05,701 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:05,702 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:05,702 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:05,745 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:06,006 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:06,006 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:06,006 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:06,055 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:06,219 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:06,332 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:06,332 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:06,332 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:06,384 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:06,658 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:06,658 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:06,658 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:06,681 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:06,972 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:06,972 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:06,972 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:06,992 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:07,239 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:07,282 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:07,283 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:07,283 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:07,283 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:07,297 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:07,592 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:07,593 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:07,593 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:07,604 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:07,906 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:07,906 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:07,906 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:07,919 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:08,217 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:08,217 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:08,217 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:08,226 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:08,239 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:08,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:08,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:08,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:08,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:08,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:08,839 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:08,839 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:08,852 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:09,153 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:09,154 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:09,154 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:09,166 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:09,246 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:09,463 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:09,463 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:09,463 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:09,478 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:09,766 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:09,766 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:09,766 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:09,786 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:10,078 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:10,078 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:10,078 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:10,097 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:10,251 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:10,396 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:10,396 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:10,397 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:10,409 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:10,698 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:10,698 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:10,698 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:10,717 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:11,014 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:11,014 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:11,015 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:11,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:11,262 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:11,320 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:11,320 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:11,320 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:11,339 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:11,642 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:11,643 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:11,643 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:11,655 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:11,952 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:11,952 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:11,952 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:11,964 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:12,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:12,263 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:12,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:12,271 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:12,275 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:12,573 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:12,574 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:12,574 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:12,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:12,589 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:12,886 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:12,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:12,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:12,928 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:13,198 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:13,198 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:13,198 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:13,241 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:13,271 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:13,509 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:13,509 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:13,509 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:13,557 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:13,825 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:13,826 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:13,826 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:13,879 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:14,136 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:14,137 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:14,137 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:14,233 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:14,280 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:14,512 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:14,513 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:14,513 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:14,592 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:14,922 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:14,923 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:14,923 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:15,050 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:15,292 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:15,311 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:15,311 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:15,312 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:15,386 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:15,705 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:15,705 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:15,705 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:15,764 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:30:15,771 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:15,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:30:16,096 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:16,097 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:16,097 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:16,165 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:16,300 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:16,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:16,482 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:16,482 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:16,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:16,862 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:16,862 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:16,862 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:16,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:17,180 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:17,180 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:17,180 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:17,222 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:17,305 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:17,501 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:17,501 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:17,501 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:17,554 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:17,834 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:17,835 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:17,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:17,838 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:17,890 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:18,155 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:18,156 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:18,156 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:18,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:18,312 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:18,476 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:18,477 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:18,477 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:18,547 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:18,883 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:18,883 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:18,884 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:18,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:19,331 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:19,345 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:19,345 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:19,345 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:19,379 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:19,741 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:19,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:19,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:19,789 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:20,164 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:20,164 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:20,164 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:20,208 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:20,335 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:20,572 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:20,573 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:20,573 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:20,608 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:20,876 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:20,876 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:20,876 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:20,906 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:21,202 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:21,202 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:21,202 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:21,237 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:21,339 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:21,514 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:21,515 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:21,515 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:21,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:21,824 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:21,825 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:21,825 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:21,877 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:22,135 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:22,135 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:22,135 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:22,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:22,349 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:22,475 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:22,476 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:22,476 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:22,501 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:22,818 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:22,819 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:22,819 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:22,845 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:22,845 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:23,123 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:23,123 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:23,123 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:23,142 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:23,370 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:23,434 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:23,434 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:23,434 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:23,453 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:23,747 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:23,747 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:23,747 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:23,766 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:24,068 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:24,068 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:24,068 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:24,079 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:24,377 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:24,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:24,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:24,386 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:24,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:24,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:24,691 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:24,691 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:24,703 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:24,995 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:24,995 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:24,995 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:25,013 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:25,318 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:25,318 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:25,318 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:25,331 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:25,386 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:25,626 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:25,627 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:25,627 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:25,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:25,942 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:25,942 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:25,942 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:25,954 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:26,255 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:26,256 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:26,256 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:26,268 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:26,392 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:26,570 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:26,570 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:26,570 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:26,582 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:26,882 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:26,883 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:26,883 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:26,898 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:27,193 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:27,193 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:27,193 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:27,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:27,405 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:27,505 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:27,505 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:27,505 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:27,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:27,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:27,808 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:27,808 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:27,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:28,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:28,126 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:28,126 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:28,126 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:28,141 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:28,417 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:28,436 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:28,437 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:28,437 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:28,451 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:28,751 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:28,751 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:28,752 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:28,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:29,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:29,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:29,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:29,070 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:29,366 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:29,366 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:29,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:29,385 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:29,417 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:29,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:29,678 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:29,678 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:29,698 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:29,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:29,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:30,000 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:30,012 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:30,308 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:30,308 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:30,308 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:30,324 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:30,425 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:30,553 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:30:30,608 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:30,608 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:30,608 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:30,628 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:30,767 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:30:30,768 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:30:30,933 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:30,933 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:30,933 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:30,945 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:31,248 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:31,248 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:31,248 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:31,261 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:31,431 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:31,557 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:31,558 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:31,558 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:31,570 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:31,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:31,874 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:31,874 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:31,894 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:32,189 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:32,189 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:32,189 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:32,220 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:32,439 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:32,491 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:32,491 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:32,491 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:32,522 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:32,808 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:32,808 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:32,808 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:32,858 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:33,125 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:33,125 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:33,125 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:33,174 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:33,174 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:33,449 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:33,449 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:33,449 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:33,457 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:33,492 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:33,761 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:33,762 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:33,762 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:33,813 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:34,074 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:34,074 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:34,074 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:34,115 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:34,384 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:34,384 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:34,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:34,396 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:34,458 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:34,697 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:34,697 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:34,698 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:34,709 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:35,005 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:35,005 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:35,005 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:35,018 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:35,319 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:35,319 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:35,319 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:35,335 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:35,462 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:35,634 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:35,635 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:35,635 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:35,661 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:35,943 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:35,944 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:35,944 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:35,973 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:36,260 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:36,260 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:36,261 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:36,309 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:36,479 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:36,567 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:36,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:36,568 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:36,620 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:36,885 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:36,886 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:36,886 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:36,935 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:37,200 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:37,200 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:37,200 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:37,244 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:37,487 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:37,598 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:37,598 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:37,599 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:37,659 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:37,976 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:37,977 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:37,977 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:38,026 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:38,360 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:38,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:38,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:38,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:38,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:38,492 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:38,687 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:38,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:38,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:38,743 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:39,033 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:39,034 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:39,034 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:39,092 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:39,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:39,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:39,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:39,416 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:39,497 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:39,691 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:39,691 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:39,691 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:39,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:40,037 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:40,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:40,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:40,106 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:40,365 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:40,366 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:40,366 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:40,428 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:40,503 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:40,684 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:40,684 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:40,685 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:40,764 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:41,065 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:41,065 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:41,065 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:41,102 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:41,478 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:41,478 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:41,478 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:41,503 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:41,543 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:41,917 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:41,918 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:41,918 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:41,983 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:42,350 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:42,350 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:42,351 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:42,373 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:42,509 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:42,730 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:42,730 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:42,730 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:42,757 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:43,058 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:43,059 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:43,059 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:43,071 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:43,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:43,361 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:43,361 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:43,361 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:43,380 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:43,516 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:43,669 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:43,669 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:43,669 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:43,688 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:43,988 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:43,989 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:43,989 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:44,001 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:44,301 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:44,302 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:44,302 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:44,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:44,532 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:44,621 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:44,622 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:44,622 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:44,633 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:44,932 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:44,932 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:44,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:44,944 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:45,262 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:45,262 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:45,263 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:45,278 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:45,538 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:45,574 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:45,575 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:45,575 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:45,586 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:45,771 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:30:45,771 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:30:45,884 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:45,913 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:45,914 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:45,922 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:46,207 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:46,208 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:46,208 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:46,221 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:46,525 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:46,526 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:46,526 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:46,538 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:46,539 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:46,827 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:46,827 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:46,827 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:46,846 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:47,146 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:47,147 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:47,147 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:47,165 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:47,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:47,458 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:47,458 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:47,471 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:47,543 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:47,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:47,775 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:47,775 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:47,788 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:48,088 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:48,088 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:48,089 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:48,096 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:48,404 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:48,405 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:48,405 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:48,405 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:48,417 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:48,549 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:48,716 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:48,717 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:48,717 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:48,740 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:49,025 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:49,025 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:49,025 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:49,078 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:49,323 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:49,323 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:49,323 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:49,378 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:49,568 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:49,636 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:49,636 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:49,636 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:49,693 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:49,956 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:49,974 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:49,974 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:50,019 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:50,268 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:50,268 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:50,268 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:50,320 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:50,580 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:50,591 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:50,592 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:50,592 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:50,656 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:50,931 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:50,931 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:50,932 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:50,994 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:51,290 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:51,290 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:51,290 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:51,355 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:51,600 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:51,655 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:51,656 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:51,656 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:51,728 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:52,027 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:52,027 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:52,027 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:52,087 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:52,391 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:52,391 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:52,391 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:52,455 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:52,618 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:52,710 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:52,710 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:52,710 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:52,758 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:53,051 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:53,051 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:53,051 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:53,104 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:53,372 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:53,372 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:53,372 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:53,406 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:53,407 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:53,635 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:53,686 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:53,687 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:53,687 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:53,717 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:53,999 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:53,999 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:53,999 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:54,028 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:54,304 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:54,304 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:54,304 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:54,322 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:54,625 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:54,626 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:54,626 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:54,635 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:54,638 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:54,940 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:54,941 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:54,941 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:54,953 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:55,252 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:55,253 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:55,253 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:55,264 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:55,563 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:55,564 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:55,564 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:55,575 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:55,636 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:55,874 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:55,875 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:55,875 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:55,886 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:56,172 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:56,172 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:56,172 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:56,190 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:56,493 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:56,493 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:56,494 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:56,505 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:56,640 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:56,803 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:56,803 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:56,803 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:56,815 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:57,116 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:57,117 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:57,117 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:57,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:57,427 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:57,428 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:57,428 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:57,439 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:57,652 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:57,740 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:57,741 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:57,741 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:57,753 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:58,043 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:58,043 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:58,043 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:58,063 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:58,362 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:58,362 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:58,362 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:58,374 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:58,664 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:58,678 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:58,679 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:58,679 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:58,679 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:30:58,691 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:58,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:58,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:58,987 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:58,999 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:59,297 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:59,297 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:59,297 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:59,309 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:59,596 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:59,596 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:59,596 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:59,636 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:30:59,664 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:30:59,934 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:30:59,935 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:30:59,935 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:30:59,977 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:00,265 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:00,265 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:00,265 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:00,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:00,554 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:31:00,594 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:00,595 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:00,595 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:00,654 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:00,665 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:00,774 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:31:00,774 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:31:00,927 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:00,928 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:00,928 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:00,953 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:01,259 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:01,259 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:01,259 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:01,316 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:01,576 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:01,577 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:01,577 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:01,639 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:01,669 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:01,893 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:01,893 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:01,893 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:01,962 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:02,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:02,231 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:02,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:02,296 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:02,568 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:02,568 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:02,568 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:02,612 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:02,679 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:03,013 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:03,013 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:03,013 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:03,064 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:03,457 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:03,457 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:03,457 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:03,507 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:03,685 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:03,869 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:03,869 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:03,869 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:03,870 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:31:03,905 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:04,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:04,288 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:04,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:04,314 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:04,586 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:04,586 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:04,586 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:04,605 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:04,691 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:04,902 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:04,903 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:04,903 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:04,916 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:05,213 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:05,213 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:05,213 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:05,223 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:05,534 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:05,534 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:05,534 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:05,548 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:05,701 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:05,850 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:05,851 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:05,851 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:05,864 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:06,166 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:06,167 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:06,167 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:06,183 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:06,482 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:06,483 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:06,483 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:06,504 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:06,715 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:06,796 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:06,796 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:06,796 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:06,827 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:07,108 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:07,109 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:07,109 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:07,139 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:07,416 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:07,417 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:07,417 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:07,469 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:07,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:07,721 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:07,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:07,721 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:07,767 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:08,053 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:08,053 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:08,053 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:08,129 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:08,378 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:08,378 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:08,378 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:08,474 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:08,724 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:08,725 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:08,725 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:08,735 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:08,810 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:09,109 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:09,110 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:09,110 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:09,110 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:31:09,191 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:09,459 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:09,460 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:09,460 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:09,552 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:09,751 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:09,828 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:09,828 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:09,828 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:09,883 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:10,175 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:10,176 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:10,176 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:10,235 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:10,522 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:10,523 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:10,523 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:10,564 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:10,763 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:10,835 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:10,835 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:10,835 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:10,882 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:11,151 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:11,151 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:11,151 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:11,205 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:11,466 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:11,466 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:11,466 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:11,518 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:11,772 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:11,773 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:11,773 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:11,773 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:11,811 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:12,087 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:12,087 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:12,087 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:12,113 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:12,400 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:12,400 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:12,400 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:12,418 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:12,722 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:12,723 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:12,723 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:12,735 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:12,773 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:13,036 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:13,037 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:13,037 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:13,049 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:13,344 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:13,344 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:13,344 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:13,357 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:13,657 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:13,657 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:13,657 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:13,669 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:13,781 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:13,967 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:13,968 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:13,968 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:13,979 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:14,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:14,277 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:14,277 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:14,277 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:31:14,289 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:14,588 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:14,588 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:14,588 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:14,600 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:14,786 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:14,887 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:14,887 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:14,887 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:14,907 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:15,230 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:15,230 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:15,231 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:15,242 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:15,529 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:15,529 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:15,529 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:15,547 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:15,778 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 00:31:15,778 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: stop_status +2023-07-09 00:31:15,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:15,852 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:15,915 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:15,915 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:15,920 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:16,163 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:16,163 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:16,163 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:16,175 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:16,470 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:16,471 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:16,471 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:16,483 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:16,784 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:16,784 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:16,785 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:16,796 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:16,804 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:17,098 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:17,098 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:17,098 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:17,110 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:17,401 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:17,401 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:17,401 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:17,420 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:17,721 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:17,721 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:17,722 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:17,733 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:17,810 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:17,987 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:17,987 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:17,987 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:18,006 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:18,055 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 00:31:18,055 DEBUG SenderThread:232905 [sender.py:send():375] send: history +2023-07-09 00:31:18,055 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: summary_record +2023-07-09 00:31:18,060 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:18,811 INFO Thread-12 :232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:19,283 DEBUG SenderThread:232905 [sender.py:send():375] send: telemetry +2023-07-09 00:31:19,283 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:31:19,284 DEBUG SenderThread:232905 [sender.py:send():375] send: exit +2023-07-09 00:31:19,284 INFO SenderThread:232905 [sender.py:send_exit():598] handling exit code: 1 +2023-07-09 00:31:19,284 INFO SenderThread:232905 [sender.py:send_exit():600] handling runtime: 3588 +2023-07-09 00:31:19,291 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:19,292 INFO SenderThread:232905 [sender.py:send_exit():606] send defer +2023-07-09 00:31:19,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,292 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 0 +2023-07-09 00:31:19,292 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,292 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 0 +2023-07-09 00:31:19,292 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 1 +2023-07-09 00:31:19,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,292 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 1 +2023-07-09 00:31:19,292 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,292 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 1 +2023-07-09 00:31:19,292 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 2 +2023-07-09 00:31:19,292 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,292 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 2 +2023-07-09 00:31:19,292 INFO HandlerThread:232905 [system_monitor.py:finish():190] Stopping system monitor +2023-07-09 00:31:19,292 DEBUG SystemMonitor:232905 [system_monitor.py:_start():166] Finished system metrics aggregation loop +2023-07-09 00:31:19,292 DEBUG SystemMonitor:232905 [system_monitor.py:_start():170] Publishing last batch of metrics +2023-07-09 00:31:19,305 INFO HandlerThread:232905 [interfaces.py:finish():202] Joined cpu monitor +2023-07-09 00:31:19,305 INFO HandlerThread:232905 [interfaces.py:finish():202] Joined disk monitor +2023-07-09 00:31:19,384 INFO HandlerThread:232905 [interfaces.py:finish():202] Joined gpu monitor +2023-07-09 00:31:19,384 INFO HandlerThread:232905 [interfaces.py:finish():202] Joined memory monitor +2023-07-09 00:31:19,384 INFO HandlerThread:232905 [interfaces.py:finish():202] Joined network monitor +2023-07-09 00:31:19,384 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,384 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 2 +2023-07-09 00:31:19,384 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 3 +2023-07-09 00:31:19,384 DEBUG SenderThread:232905 [sender.py:send():375] send: stats +2023-07-09 00:31:19,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,385 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 3 +2023-07-09 00:31:19,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,385 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 3 +2023-07-09 00:31:19,385 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 4 +2023-07-09 00:31:19,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,385 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 4 +2023-07-09 00:31:19,385 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,385 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 4 +2023-07-09 00:31:19,385 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 5 +2023-07-09 00:31:19,385 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,385 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 5 +2023-07-09 00:31:19,385 DEBUG SenderThread:232905 [sender.py:send():375] send: summary +2023-07-09 00:31:19,390 INFO SenderThread:232905 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 00:31:19,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,390 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 5 +2023-07-09 00:31:19,390 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 6 +2023-07-09 00:31:19,390 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,390 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 6 +2023-07-09 00:31:19,390 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,390 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 6 +2023-07-09 00:31:19,394 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 00:31:19,628 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 7 +2023-07-09 00:31:19,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,628 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 7 +2023-07-09 00:31:19,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,628 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 7 +2023-07-09 00:31:19,628 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 8 +2023-07-09 00:31:19,628 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,628 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 8 +2023-07-09 00:31:19,628 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,628 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 8 +2023-07-09 00:31:19,629 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 9 +2023-07-09 00:31:19,629 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,629 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 9 +2023-07-09 00:31:19,629 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,629 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 9 +2023-07-09 00:31:19,629 INFO SenderThread:232905 [dir_watcher.py:finish():365] shutting down directory watcher +2023-07-09 00:31:19,812 INFO SenderThread:232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/config.yaml +2023-07-09 00:31:19,812 INFO SenderThread:232905 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:19,812 INFO SenderThread:232905 [dir_watcher.py:finish():395] scan: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files +2023-07-09 00:31:19,813 INFO SenderThread:232905 [dir_watcher.py:finish():409] scan save: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/config.yaml config.yaml +2023-07-09 00:31:19,813 INFO SenderThread:232905 [dir_watcher.py:finish():409] scan save: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json wandb-summary.json +2023-07-09 00:31:19,813 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 10 +2023-07-09 00:31:19,813 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:19,813 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 10 +2023-07-09 00:31:19,813 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:19,813 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 10 +2023-07-09 00:31:19,813 INFO SenderThread:232905 [file_pusher.py:finish():167] shutting down file pusher +2023-07-09 00:31:20,281 INFO wandb-upload_0:232905 [upload_job.py:push():137] Uploaded file /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/config.yaml +2023-07-09 00:31:20,285 INFO wandb-upload_1:232905 [upload_job.py:push():137] Uploaded file /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/files/wandb-summary.json +2023-07-09 00:31:20,287 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: poll_exit +2023-07-09 00:31:20,288 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: poll_exit +2023-07-09 00:31:20,485 INFO Thread-11 (_thread_body):232905 [sender.py:transition_state():626] send defer: 11 +2023-07-09 00:31:20,485 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:20,485 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 11 +2023-07-09 00:31:20,485 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:20,486 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 11 +2023-07-09 00:31:20,486 INFO SenderThread:232905 [file_pusher.py:join():172] waiting for file pusher +2023-07-09 00:31:20,486 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 12 +2023-07-09 00:31:20,486 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:20,486 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 12 +2023-07-09 00:31:20,486 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:20,486 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 12 +2023-07-09 00:31:20,977 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 13 +2023-07-09 00:31:20,977 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:20,977 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 13 +2023-07-09 00:31:20,977 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:20,978 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 13 +2023-07-09 00:31:20,978 INFO SenderThread:232905 [sender.py:transition_state():626] send defer: 14 +2023-07-09 00:31:20,978 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: defer +2023-07-09 00:31:20,978 INFO HandlerThread:232905 [handler.py:handle_request_defer():170] handle defer: 14 +2023-07-09 00:31:20,978 DEBUG SenderThread:232905 [sender.py:send():375] send: final +2023-07-09 00:31:20,978 DEBUG SenderThread:232905 [sender.py:send():375] send: footer +2023-07-09 00:31:20,978 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: defer +2023-07-09 00:31:20,978 INFO SenderThread:232905 [sender.py:send_request_defer():622] handle sender defer: 14 +2023-07-09 00:31:20,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: poll_exit +2023-07-09 00:31:20,979 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: poll_exit +2023-07-09 00:31:20,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: server_info +2023-07-09 00:31:20,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: get_summary +2023-07-09 00:31:20,979 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: sampled_history +2023-07-09 00:31:20,980 DEBUG SenderThread:232905 [sender.py:send_request():402] send_request: server_info +2023-07-09 00:31:21,242 DEBUG HandlerThread:232905 [handler.py:handle_request():144] handle_request: shutdown +2023-07-09 00:31:21,242 INFO HandlerThread:232905 [handler.py:finish():842] shutting down handler +2023-07-09 00:31:21,980 INFO WriterThread:232905 [datastore.py:close():298] close: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/run-humans.wandb +2023-07-09 00:31:22,242 INFO SenderThread:232905 [sender.py:finish():1550] shutting down sender +2023-07-09 00:31:22,242 INFO SenderThread:232905 [file_pusher.py:finish():167] shutting down file pusher +2023-07-09 00:31:22,242 INFO SenderThread:232905 [file_pusher.py:join():172] waiting for file pusher diff --git a/wandb/run-20230708_233359-humans/logs/debug.log b/wandb/run-20230708_233359-humans/logs/debug.log new file mode 100644 index 0000000..478f1d1 --- /dev/null +++ b/wandb/run-20230708_233359-humans/logs/debug.log @@ -0,0 +1,39 @@ +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_setup.py:_flush():76] Current SDK version is 0.15.3 +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_setup.py:_flush():76] Configure stats pid to 232873 +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_setup.py:_flush():76] Loading settings from /home/id929844/.config/wandb/settings +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_setup.py:_flush():76] Loading settings from /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/settings +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_setup.py:_flush():76] Loading settings from environment variables: {} +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_setup.py:_flush():76] Applying setup settings: {'_disable_service': False} +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_setup.py:_flush():76] Inferring run settings from compute environment: {'program_relpath': 'main.py', 'program': '/rwthfs/rz/cluster/home/id929844/diffusion_project/main.py'} +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_init.py:_log_setup():507] Logging user logs to /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/logs/debug.log +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_init.py:_log_setup():508] Logging internal logs to /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230708_233359-humans/logs/debug-internal.log +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_init.py:init():547] calling init triggers +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_init.py:init():554] wandb.init called with sweep_config: {} +config: {} +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_init.py:init():596] starting backend +2023-07-08 23:33:59,577 INFO MainThread:232873 [wandb_init.py:init():600] setting up manager +2023-07-08 23:33:59,584 INFO MainThread:232873 [backend.py:_multiprocessing_setup():106] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-07-08 23:33:59,596 INFO MainThread:232873 [wandb_init.py:init():606] backend started and connected +2023-07-08 23:33:59,604 INFO MainThread:232873 [wandb_init.py:init():700] updated telemetry +2023-07-08 23:33:59,689 INFO MainThread:232873 [wandb_init.py:init():737] communicating run to backend with 60.0 second timeout +2023-07-08 23:34:00,210 INFO MainThread:232873 [wandb_init.py:init():780] run resumed +2023-07-08 23:34:00,237 INFO MainThread:232873 [wandb_run.py:_on_init():2177] communicating current version +2023-07-08 23:34:00,307 INFO MainThread:232873 [wandb_run.py:_on_init():2186] got version response upgrade_message: "wandb version 0.15.5 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-07-08 23:34:00,307 INFO MainThread:232873 [wandb_init.py:init():787] starting run threads in backend +2023-07-08 23:34:00,355 INFO MainThread:232873 [wandb_run.py:_console_start():2158] atexit reg +2023-07-08 23:34:00,356 INFO MainThread:232873 [wandb_run.py:_redirect():2013] redirect: SettingsConsole.WRAP_RAW +2023-07-08 23:34:00,356 INFO MainThread:232873 [wandb_run.py:_redirect():2078] Wrapping output streams. +2023-07-08 23:34:00,356 INFO MainThread:232873 [wandb_run.py:_redirect():2103] Redirects installed. +2023-07-08 23:34:00,356 INFO MainThread:232873 [wandb_init.py:init():829] run started, returning control to user process +2023-07-08 23:34:00,356 INFO MainThread:232873 [wandb_config.py:__setitem__():151] config set learning_rate = 0.0001 - <bound method Run._config_callback of <wandb.sdk.wandb_run.Run object at 0x150015bcbb50>> +2023-07-08 23:34:00,356 INFO MainThread:232873 [wandb_run.py:_config_callback():1286] config_cb learning_rate 0.0001 None +2023-07-08 23:34:00,357 INFO MainThread:232873 [wandb_config.py:__setitem__():151] config set optimizer = AdamW - <bound method Run._config_callback of <wandb.sdk.wandb_run.Run object at 0x150015bcbb50>> +2023-07-08 23:34:00,357 INFO MainThread:232873 [wandb_run.py:_config_callback():1286] config_cb optimizer AdamW None +2023-07-09 00:31:19,283 INFO MainThread:232873 [wandb_run.py:_finish():1893] finishing run deep-lab-/Unconditional Landscapes/humans +2023-07-09 00:31:19,283 INFO MainThread:232873 [wandb_run.py:_atexit_cleanup():2127] got exitcode: 1 +2023-07-09 00:31:19,283 INFO MainThread:232873 [wandb_run.py:_restore():2110] restore +2023-07-09 00:31:19,284 INFO MainThread:232873 [wandb_run.py:_restore():2116] restore done +2023-07-09 00:31:22,244 INFO MainThread:232873 [wandb_run.py:_footer_history_summary_info():3469] rendering history +2023-07-09 00:31:22,244 INFO MainThread:232873 [wandb_run.py:_footer_history_summary_info():3501] rendering summary +2023-07-09 00:31:22,260 INFO MainThread:232873 [wandb_run.py:_footer_sync_info():3428] logging synced files diff --git a/wandb/run-20230708_233359-humans/run-humans.wandb b/wandb/run-20230708_233359-humans/run-humans.wandb new file mode 100644 index 0000000000000000000000000000000000000000..4f9dd3a9a8221f958e67d0f08111f8cfc4bdbb9c GIT binary patch literal 1922097 zcmcBtS95x}k6~NN^QWc^j2w(jj7m}pDdwqW$);%*25FWSCP{{-7Kw=lmS$;YCZ?(8 zsRn80s~8y$@o;dlWt8S7<`oy#yD|nbGIB6AF&YrotHfhkZkU=}R+d_tk!Rk;*vAAj zM~E{eHMKxDCoxG^N+L8bIX^EYvm`S=FEK~KCowOjI61K(wOEOti<gTnzC1B6C8>## zsk+t)>WVCxyySF41HFubWWCIiWWA#Dk__F%#N>?BJiV0EE=C@X<7<{LWfOSO{c;Y| zEJk%M4i3f>OpH628Ku}W7z-G8FfuB!8S5Du=$UA-8R!|B>KQvRX)vy0%;R#(C@Co@ zw$j&6&n!VRS3e~)Ev>XTGe1wapeR2pHMs;K5)T#8OV2D3(y%l%NK7@iG%_+Wwlpy` zF|;%`NKP?KN;6AMOiMDiFitW_N-?%HPelsY$x0g+rZX^dFh?09Tq}fdH>U<89+wjp zlSsBDEM(HjVqoN8i88}#8xO>`8H~7sic||fm-6ZQF)(tlYDsZPaPj7(CKlyo=B39M zC6=T%F|rxx85kHCl4_`leC!2p21X7xEpaYUF3$XdlFZ!9s??$;Ms_8~l*HU{B~ne~ z`D;3VEdwJ5yU+?oE@>{7oc!YACPpDcJwp>S3sXxY3kxGdQ!`_8Bix?g;^tyaEyz#K zXkuhE0CAEMOQ0M@F0S~J%-q!ClEmBskg;YK78a&P1}5fuhL(m#rshUm@?0G8MWuNl zRUieX7JB9;Mi%CVMiwR}7A6*ET)bSY@x>*n1x<|1hK80xOdRF@`=&15!@$VFA+#OU z%?3u62F8X)=4R#wMiv$ZmR#x>0WWH)X9)x5hUNz5CaJmxrXW{i^@1T6PA^#KnVFfH zSXh{#d%?^=&&bfi(7?#V)YQ<}(h$`PMg~Gm92KWt?iJb1z{tTVv<=w{26~pp#%6|= zX66<KpinY5#_t6S3o{ENOZ;9i;!;431wlhtELiH97#o@!Sz_^lrG>GviLs%PiLr&H znJG#n7#RvNaa6JxWH|0(VC3Ku+KTD}3kw4SLt_ggV^af5BSSM|E;Wou5J5zOxrwQ< znHk<VFvjTtQv*FC0}Ep#LktfX>Y1BbS{j=gni!ZFSel!ldca7CiK8mu&%AA*RK$&% ziVXD3Ee%Y~O%069P0UO!j0^}wfvJf(C=BuXzyxP1GBwmQG%~U<voyu<f{~t?xrvE| zv8l1SnYpngS{xV)F>zGKPwrg+N<}>AsmR<26nn<zM#d&4mgWZL_~XFH(#Xuh7_SdZ zar?kX&&b@^$k@Ob!w1HC7Dgr(CML#a2F9j_rfB)VM2Lx_rt;MeM^Gg2qDO+6nT3gk zk*SH1fw8%znKAyXY+-3(XkuoJKOdOk_JXmVp{cR4nUMvC7fkfb4NNS}&CD&$4GoMf zEKt*tsSp!KZM9wBHc%w+p+|z5fsv_^g{h&DiMhFjxrqhdtZZRsXl!O`f!_<}_`G0d zU}0cxWXvUpT%ZaXnwjbunp&D!m>C<HSy~vNMS__S6Gz?7|LdDTKHx|9fvKsbp`o#* zxuvnOrKzQ*8Qx@MVQ2wLM|hKw1#S<R=ouKAm{=NM=4DeoQ!_I|0~14YV>2@YBeXa$ z7h>Y5PiWYF1>^$(3?G;nni?8gm>C!unVOlKo8pZFb8`a=BTFOvabStNG&0dMF*G-@ zG{X`FmSz^_29}m4re@|A=BSCtLWr58f$^O6KHGf^j2wbOJ5h^M6H5~lGedK86AL3V z0~1U9sR&%785?5p0S^}|v|45|G{6@N7Dh&f#s(PmvYDBlvAMCiiHVVkrLl=Ix+g4! zm^m65e}oB4*~`GlAtbbekxK^Fm=HG5GcmU?H8L?VG&8d>H8e0W#$O<rnVOrKT9{&{ zBxFzEu9;0u^^6QnjEv08F(SfD4`i~5fw`H5g`tTdN<<hN2r+XsF*3(EOYCQ0<Pa9x zh2{q%OJhS*Q!{e|Lo+i2P;rK@bzy30WNKk*Y=qwvMz~|bRL{)F(8R<Lvw2~zXJ~G0 zU}|atDv?YLjZuAJD8$Us%y@l<Zy+c+iGY$5N=z6T7+4sX85>%f8ybTgi8oK18W~!c z8e^%Rkz>Lbw<pZ>3=ECTO)ar`!qm*f*xcB}(%8__#1u7C8yg8RbF?r<{FGt<c|sKA z2}Ik}K+o9R(ijwp<`!lKCWc04cyqOhiK&U1u`z+<gr|x&(=#zJ12rl!Y6o*YOH*?T zO9OKg3rllzGt{!x*jR{}qm}VuBySqX6Ji*iFf+0+G%zzXG&eG_Fg3<sG#Q&2n;4py z5{L;rwX~U@xuu!8xg};>&qB}G#KPFp*wWD4z`_`<sbp*-#LUsgnA^^>2$U(r(KCgy zfsv(!k%5_!p@E^X87Q^l%M?cDrsf9b*a}$W^n|CPHrF!*HH-~0+Zq;n=EjB=plaO0 z(AdNrwTv}36=LRSXPh@tCjb-`66jH3WM*mzYBCv_f}k<}7N4Pok+F%Pu{r*nji;(M z2i0e0hGv+p4NE;kkm&{%hL+|AMuw<OK4UW>W{wWVDGqVkps0{Uj|wADLljizSQwia zni?4y;ms8W7RJVgW|jmJ6rTFpT+h<P%+$mfv!<}rGqJQVG&MIeGqNx+GBiRhpUj1r zIXW2&XMfxQswt#EHH8$crVupHGcq#(HJZ#!OiYapjqqj)3rlkgGh-72EG<{$<YbAv zc(TwlHa0OaFg3@>*_L`17G?&ZXfQK3GBZF+PM|8gi}6w4?$;ncNQ3-<Ts#>W8yQ#{ zSQr=@7#NsZni}GZ2uKgk$P|C^WQ3>6w$L*-G&eLfH$|`Q%t4`PVQy?_YH4C%VT$Gl zP>tQqc;M@`)1cHOgOQqyK^fZA)WXEj*wnz(6n{*Zn;IEe8WAX-jPO+1mU@N;#)f7_ z7~LRq13fcS6LWJjQ*i!9%M&J`I=hFFMcSni)QgZs??o6|8W>s_8yXlJSeTfanHX`Y zV)R9YVSP~xGh+j+eF&t)WQ3=}w$w8Lwed{N&=Zrnp`L*;NXpE_z|_FV61BoM0ae(& zjAqLN9)c2+9C~6hG`BD@w=^^}u`sqUx5PiDVPR?j&eeu^%O)c{6}F|Gg}I4=k(mWX zVlvb-F)}qXF|aTK)kBsjnc4(YU-vPp-EB++B_?_F#AIk@X=Gq(VPR=#U}|n@W`RFP z7@Hdyn;05d;`apZ3L7;3VrFV=XpYh9FgMh*Ff_9?HZ-v?Gc>X^N3F0;jD?sv`WdgE zi)RGY5(=PN0=emAXkl(@U~UHLr5GEV8yMhic32o0gGQGO@izdCaM##o26|?oW`!wc zR2b<Q85o#aSXx+`g8J8}Q30y3Conn+^tgjOp@{AYBSX-5gNd<$k+~r#81VKdEDS8n zO$<#;2zUZ_g>7c2XJBM$4jM#3>z0}u>6uy>f<`G!K|KnzJOQe&Co+C`!_x)wgc8UT z$OWvSvAHEEothe$8JZgz;`M{MrLnmQsJ)9nIpMCa%|I#N#M0OpGdUUQS(<}NClhl^ zGb2k=)SAu&R9{bGtQWcZ7UT(KOivh^7+6?>+D|4HMwWQ<gt@r|s3C4bAY<dMuFVYf zEDTJIEetUl9p=V*#-?VLmY|_7OG``i0v1$VPiD;X_WJ-TU{x>*SR)HFQ)4qjQ*%RO zLqkhbe7y;CGf*L5O27}et7|hOJwr<qb2B51ex13o9w?5@&CEe<2V>OHJ`+%FJ%w?$ zYYa0e9#k>n!4OnC7#bKDf(BFZ57U50D@`qo@HhU9ao5&nMtY`}pfOd9CWpBRXvp2b zz}Vc#*bvnELCw~n>Ut{UEWY-+AWx`ac*4}s+``Zh6a}Dq&KzHp!yMG_FgLQWz?&nC zao5&npmc9yYG#Vj3^zB?Gc__ZG`BPcjb>Szp|&|pLACWX#*NFCKL%BG>Y%C)rGPcI zG&M2=wc;&|O$<y-P4N1{(7?#T$ik9<FK~~3n}HI(v8jn6Mpb8`XK7$+Xli0<Vr*h& zhMKEQLDltiMm{lt?I1sBfc$_`G?^M&m>ZdynV4A`7#N!4jR-SK@Q|4){^Hdb_xQJ& zv7WiHrG)`ztI1T)$PzRSXJBM$WNd1Inj=g>)%6U<9*3wLP<5?|QC*vunpqecniyFa zfT}qQyzyXWZe(d}W=hBtc&cj?Jwqc?kYh0#PNsThpge5~jt)a(wA2Kuu4gjN>htdc z#e^0{Oc)!OgNCvUEKCfH&CT&v5@x30?zJWUHixk(&apo;6FpM{OG68c(MxkPJp(fX zb4ybLGf<6%9uuJ2dKM!uO9LAyCbZFG!obqZ#M0Qn!obMX!r08x1aB+c%-Go2$jsal ze*tTZr?xf$^?Hm<%`p0O=4N^(#^x6021cMZET}3(o|Q8NRoAl_XLWK*f?`4k6cZ@< z+RVTJl%l}%VW!3=cxwqWLnAYDV?+F%I%7Q5wW*$wnTe5!DP}EUre|SjYGG<=ZfRm> zh+Z~<YU??S8!axVfeKh%PyvhL2XjzM!_>sw!o<kH$kZHf<ImL65HzhtU>w#MPjzjo zXKrY0W{IV$GuJaRGc`6aGY1v+W~l9OQ&4R^m+|+9Okt2G^e{YOY+-5%8o>nl-_*nm zzbDKr&CD!}Oz;m87~`q0&GZZ{%*@OzG3F%9&GpQUEsQKc(+cKh=4d6Xg%C5xJjOq7 z^~yo1NgtG&P)b<Pkdv{crJ0erk%5Id-gXmYa?ZdAfA87^Pkn6$DuRr$4C<R(=ouNA zTN)Xg8H0wkQOA-^LDltq#$Rdf{GfbofS#`nK?BI330@0xBU2M&{3A}LMkdCVmX;>? zYdRA=^|iU4k%5V&p(SSH&qB`}RF4~5m>C*k%&nM#>gxrJ&($SEK*`AvBRPRmxrKqH zsfDGXiMgp6-Xhl2zyLJDXo$avHNoA%HZ#{VGdH%du(ZUeur2kBj7&`pj4h1}O%2c{ z>C8YC_Cm(9D_3p@MTHT1R2W!*s!(HNQ)6RuGh+)2yhW^uxf!UDNMP{K1a}A9%t8+| zdT3&R*_p7^Gq*4`H#IRaF)}hVu|%!x%s^H4BF4Wm=Vd^d!Wfh(P>Lrr6H^0ILo*9= zOH)$|Q!~6nm?ox1MyAGQ2KXxq6FgP6g`Sy(A!t&EOBQ*yQNYl`K+nk7*uc`r)Wpoh z47FEh2CA?ZGisj7<^cJ@1j7%YAx}`gHZZj?Ff%vCJAi3oWNu(?Y-mWp4|r;9OFd8% z&%gvdHCY(wnHzuxge{Ft%q=ZZ3nw#Bg}sDvB@2fW$PcC<KcE&)CMG84h9;o8-Uzhx z1J7`{iGd-gzBVI}ukqB^mU?E!2Idy#7&DF*hI)n;MkWS^W~Szb1}3Nj$!4JHdMRVe zrJT*6Y;A^~tqm+K49pG9EkP;W$k50FZ(1@oH#IOcF*V2EhBd)mUz;1~nV1@w7#d)V zb66PZ85kHD7@1grGQAO6Vgl9I%NRLWLPSB?+8jMw8yZ+zfcl$;mIfw928Q?tVU0~J zK>ZaX0*MKCeQj<Cnq)ULGQ}uiEsXTc4Glm=jH!X8r8#<X0#(?{8Ox7Kw}PU=0y8R% zj0}uTjEs#f3@l7RW4w6Mld+M3nWd2#fmVkJ?g|?;JZ5TPY+-;=VOtpMnHYfTAY(IQ za|;vH**Y^&g}s7N=!K^a$P<?6o-i~tF)%SRGPW=_GcvaTjWFQx1b8iqk%cM#9=53g z&X%~jk)9c7J_@6NwJ^~$G&Q#{vH+D%ppiV34z?Mn#$L&o!=ZHvl%A~6)02UPp|QEC zp(SW;+R)I#1aHUA$jrnLG|z><*<p&i#x^(BGqf}_F)_wWPbPZiCKd*!pmr#@kVWx@ zIjF{7#hAwa)dVzLV+|UvL8&G{TFfjgj14V7GhO%>XBiorfV_*pcrpd`6;KxW3BZ<@ znH%d_7@JvOjE7s8>KR*Dn1J$xxv9COF>2{#4yvzLGcp`Hza5mCY|vAafw{4nrLnoW z38*ImYDVE3axyY7H8Qmz(1bO`U0s95Gc1ik?L73psfC%IA!vc3p``(q*%fn8b-jks zSYyvrkSA<0Jz)l_e9VjtEsP9I2(0QbG&ixdFeNlzV`_psOMn90z}ysLn83nJ&(he) z*v!Jx(%9S-R9zu=>&!v*^;*Vvw#t5>EMbS4B`htBO-v1pK}!%pYk%<#*MOHYm>HSj zuP01RaZc8mo9bDBmgE^@rYCdIf&c?^P*1|r)B<goz#LR#uVdWWyK)~WD(taD1*n^2 zX=G$!VgSn7czt1LWNu<;jBT+T(kzjw8Sbbs(=!6)Y;2w|H#amgGcYhRHU!Napyq2( zmA#(P;VPdj$P*6eo&eP_24=<vhNhOr<`xE~c$-e3bz<fQW+wPs;-=>KJYi;F3|b9` zws_aVLeJ3D)WE>V(9qn_)XWmKo-hYh*&7%G@8|b`JmHA$2?KL;V`I=nr736{-_!ta zcf!B~G!1WHhQG=-wZP{IOAB*L%mHx=3q4a~OH<IY6f;8$BO|op2~=ZmWLzUBdJyCZ zCk#)3T1^HPX2yn~nO9>23w*^Bs9j=gNGMO>sj$uUj4jNJEU+{?Ec8Gr!P3&g$lTJ@ z9BowJ98_a(VpN=#q6o^_&gePY(8$clz!J1Pz{t$V*whl=I01C+r7?jqaWmX~Y|v<c znTZi-8~{B%S?U=Znp#*G8krgySy))0w#CgsRrY4ag$l>^fqdbD;R{1!W6&Ivk*SHH zp}8gA(GCks6LTXYOG9(~wVfHBD%(QO(8SWhz!0;PwbU~=Ff=hVH8r*{w=hQ=0<-{C z*;^Px55#wYeBp}j3j+&F0~2!tV^E*O05qtJr+l)oG&C{+`2v6I$qaWV+uTCW)Wifd z6M|mhSsLhpdin+i7UpJVhUO-y&2bA*t-X~o^`Z1ykT2Y@_`(<zz($5<29_4)czf9v z7Ut##X2!-w`0ENYJk_>^o+W5z6tl*&1g%9hGcmO^H83_bH?~0Y1*qEI#^`w_@hB*B zyQ61rL(qy2&}fgbv5A3!Io^e578WLkhQ@|w1ZIHE@KoEDdd3EzMd(<f!ot+jz}(W% z2s(O%Ty0wz3o&zSXH<3Hr3C7tdVsp9C~ZJPV?#?bLu1fdRM65E6Feo9g@plVU9|!J zhO8OxUbeZVo|&bYfeEOUh_cVa(ooOH#N5o(%+SEh(gZZ@g5n2IrM-jkbN=*VP(*m5 zM}&c;fr+uPg^?j>If9|7A->kQ1!xKZoS^W|cbVbtXImKP8Gxp=j4=AymWH4nxTTSq znSrH&G1|%w3s9xKld*Ei&TpVR;f0YWEG^BA4GhddE092|O7VNb$kNgTw8Rd-C(LoS zpDYaYOw0_7O)%R}mPUF8pov3sGZRx2Lo*}PRS_1TT6-6x;pd{?ps4W1hzc`PLrWtA z12a=23uAM0Q+)e9EX*to%}vY*EC4ja-Osi#(6cZ#H!{MKo{aQN3@j{+EkL8fmL}$C z85>k<?`C8>Hzynv6+ReI0h*gOu`~p&cQ7_H!#lcfVP<LsYLA=YpQ13sU2R){(!QaI zficGXsil#gxuvlIsAMuXwlpwAowu_9Roi<QOFvccfuh0}BPuLS3=J)fEscyp)0!q0 z_%=<z_8S=E_k}s`YTLq4&kWRCH^o?ZW@!vsrU@E~v^27?G(~MdS%7Noy^LRH2>k>_ zg&#&#Sb|oJfQCH4Te*zzdcxG)7_>5sz|gok?phl(#speTY=~Jv8S9x^SelxEmZw;P zHbJ2@$Spy&_C7}AOPW%ksPM;(3R43!P?N&Iz|a)b2gO&&ni?B}=PL1LZFAg}wuO<N ziIKUHsR72~UQ1&=OLGegGZRZtL1|%(+90<CRoeR*ZEcT$d#M3fJYi{MW@&0_Yyw)| zXO1^2Oh7#-BMU?P4JdQmm9~YE9%$*VA?BQyrHP)gnW=%1nYp2ni6PpmElW_HeSlFe zG8F8IKnzb<SejXYR=R^4^cEJT_(n4=OiV#TXoN;H&2iV+7NCI}3lkHJd0<NuJ#$k7 z15;B_jcy5A7=T>gS%T{9gN&2*pPB{A6hY{j!q5P;qtMX8!W=YYV2-~*4qEJKY-VCk zAZO$5YFilVnVMUg7+PZb!c@-?w44$&egx{#qfSy-f@<wUjI~mUx}cUvFnY_wz|!2v z476_nl%g!njScZ-3eavSLlXka3e0i$v@MMFEG>-9jWP3tsh+8^sj;b%rHQGrkvV#D z0#(|F8P~|k{{zKD2zpEySXvkxnu7WjW`>qVptVT22Qw{<jf_k|sTTi!9CJLCwh1U_ zn}Y_&(Yi*Krh1@#Sw<!nhTswqEha#f_7TSBuK`y<z6izeg}Jf05vZ#UUXf~wchQrD zk-3E#c*6<)@(E9^ZK7vs1e%V(tnbY9Ow27UOiheIabbwIgTfM2YaeA~D*cxVDrCbz zSsQt>#lYOs613>w9Mpg`w7@s$0U9hYGBq|eA&@EXRNAI`CPrqKmIfFrw=B&-g{+x@ z31}?S1k@Qv$=aYw`xv9-{DbWW7#KOig?2M?$-)-Aix}t`m>PkGrOgdZj7$wpLF2Oc zI(UZQJ$8oX_&azOcxr7^JxdcKBO}bkv6kj~CYHt)CWa;kpb`^pzQqz$Z69aMw38PD zrKkvu6lH2*0crypn^_o`f%miG$rpwu#^#1*mZtbepe*oI+h%&kpzQ}(A_KfH!N|<S z+{D<zzy!5PZe#$ewofpAjZ^;sN>P!Z6ouS3GB7tbGB+{;b<$1E3=K{3HpvYvL3@lX zu<hAI8Vt0+y#md`OwZgLG`o+{!L!gaHZrp?H8-%Zw6rusUC?M`0IIf6GP2#h3hq}# zVMK+QnS~{&Dl;-Q1?}s>H;!gu09v+WW=UY_z6G9Y+Z;5H3SRw+UPM{wnH!i|f~H%H z49(2UQQCn<2B3QT6l1ebz9y)$h{mWa%*{<rKx<1ajf_l8P4Lb_S{N7@o0)-1LcB$k z1)h4_T+h_R$kYI1F`%WTo&l&?ZE9d>VPRr|(l;_P09D(k8K0U5@PLw23`TM?Gcq+Z zv@|g>Gy-ic#alu_Chm<1l~5MA``Q-fdX~m!MrIf@UzXsl2^QuS1{NlUph0xxrmT?x zsMbEixcjnU4#*R+AWtBdvWCV6mY_1h$iU3l(!dyBYBC3Hg(F;5Sm5buTj&{^n}b%t zV&n-+P$dG|32SI-VQh-JoyEuiRBfMSG>ZMn1uCB6F!O}Dv8k!Cskxz{fvJIkF}@{@ z<`$+FL{!@rc&cp+JquGKBV&xdwvmB>o{536g^9VDrHQen8R{wzBLh&ieU8!gSLa*M z^j$n?`VKiN49pCS3{1@oEX+XTV;1<<(V1HqfclRF+D{g^$Hy%!^-K)SK%?-e*&5^p z&=w9O&>jR6Gb7Z)A&d+_b@qA2l_p<rgHlrhC^ey!u%?!v(M%Hy12Y3qQxabZYi@38 zVF_x<;veL<z`Z5g!cq^k#ulS@XJlZgXJQVT9JDmIw6ruu9WF330M*$S7&pqFNdTp$ zM9kD=2wGrhYG7t;Y5^J{$5UlPH<g>3;jip0aaY-v271O8CT2z$#}j~j0m|{lW)`63 zp=gT>j0`|k_C-eV&+3ez5;h5=gf%rW2c2L7nsqU>w7}cb2DLE_EQ~A+@s9*r8seO9 zu{6*#w=gg<H{wFw31Vbmq-Shw1WMBuW=5b@KS-@7BSTPyeTnfi*NLT|)>ATO>j^Yg zYzmr{GX%{F8{*B_W(KC9j<x~*){`afp0=f-o}s0Mg@HNxAV0_#=B5TFMuw(FCI;Y@ zQ7GO3RoRyrKj(?*fTAJ=BPz@-EzOM#O+dXaaGJ-LpiE7TK=bk@1fl}e*v39FZ)phH zdt-uLPZ${(>lqpw8<?6HfOpxVF5faT1Xb8q827Mq^nnVeRLsK3!qOD9m%`l0+{nxX z->@>MCv0G9L7*{iiMzVCG}N;+Gc++mpGF0F0ptb~(0HV|nW-_#fQOMGsJ_0+Xt;XS z9#G+whEX_~SsI&~7@2|2Ju))0Fu^yLX>I~K9>&xN|MFN%+`Vi|BRx~lc3%VZH6BI= zCVHTqh~RD6MkW@hy&@w+P<?%k(OYxI3s7202c;#HO2XXG+|1m}#2B<N0d%Gb?uNLz zF?gY#kuia?33q*MX{={pWM*t+j^1zrdBW5jl%5UEEsa2H4^Z+0sJgz+SXliw8<dtZ zKxqlJmH=&mHa4_0H83}|w6MV2=rA@0Sz~O5zn5(Z>bK#@55{_+=@j$@<3<LidWI%O z#ug?9rbb3++xv|SL3Q;FMwR)tL7=phiJ6v+jVz4}KwHZ#LBrzs2G7imEQ~<q7=c3y zEOB?SElu={3=A!e4Y7H`9MthOH8(RfG(eqvG%^I$);Aera&zTC6<roaMQ3VcZfIg+ zY;I&?W^81HcUh^qkr8O)rU8KsUY5AK*q|{o0}DfQEES!Zo{=eNySIgj3Ah`N(t<Sv zRoAx|uW_dB2l*l!!x!eDQA0CJ3ro=23eZ|^JXr#?_5w6*hoyAog`c6qY-oU|zBbh} zGBO73QN*a~Kpj34&@wUu&^!xjXTlIvUEgMOU#9?`e9Xa2P$s6JLeI?D1azbg-W}QI zhM+@ljImD2qxb?(eQl~|4odv!qx(h%=6Xh!#+IPnr)FlLwSveQ+Xz%&-(l=+oAd)z zU+04AYm|&_4mwcI%+LhXq5&0u_$oRB&{j4}Lu@C(pm+jLeGN`Gpc9<Xx)UH@fKJ~q z18w9rG%!XT1vD}O)z^0!CqCq11$iS6!yBdsW}u@iOh6rN(8@qO-Y~PYv;a-YW7}_s z;tkw=Y)jDT9Tujb?k9R<+(OUT)WFabG_wXer3AH)Z3L>a?=c=LC<HH(&Bx3b#^9pO z(#+Hl)Yiwhm%_}_*wO;D#R$s)KZ-YSFB`Ws*8|lA1{RoYKnu{~E<+<DBSX;ca+JwC zBO_3)eV_4Pko!|mWE5aT1}H~?TC$*?r-_9HzSSybpvIfAp&7O_ZBTrHr`|T#GdD3X zHM9gZu#o4pjSMXHj4X`|jg5_s4UH@<P!|^%8G-8U2aJ*4xBi2?QHbFU(5ZYTmKLCa zZ_p8R_$mxD(9}2R2plXGH;Om#)Z7-Jp?piwoDh1NveYvJ&6t>57#JHGnxa)1Mxd(u zA!F7o^NpZ-uLx93p)@}%K>HU=K`VYO%uFrtHKEMR%?v=*9+u`fiYIV)v@I?4Obty; z%rMSUF)}pJGcW@kiDm&>jAdzxmZU(H_anyX_wR{;;-VNME<igZj4Z+JY%@!9ygOUW z%s>mH4Nb81Dp0(Er}nncv$QZV2c1ub78iyFdZxx^#+HUAmS&*PMDqry`hLv#MUJNt z<c$&xZ<w2#ni+u3I{=-%h5tZIGc#igQxh{IY}*G>yn(0w28}Zr8yTBp<P1a55f~;G zriR9bMrOw5#%SIE)!$DT)joN~g6i*5jAF{f2sBJ;Xkuw%Xl`L{j&GnJv_2bj2oAQj z{K($GeF&PN0qAU2Gb2!239YMYXsBljT0(9FYWjl~l%Z68p!)kM<04M`#Ru6LIm)c| z@C)&9w5$ak%X_19<vd0y9xmqOg3=~N7EowNNpT4#7nJH5=p`4F#uua(C8y?<K;$f8 za)xMfpv^TfIU@`?b3>S%F@~I}1x(HaL(be7CTEHvX9AZq!;mw8n`w?AXKoHN(*jM- zP|pZ%rX`x3fu6CUlr)zRC|nHD0|vDIOiBtWi54=<26_f?jhG>01ac|FRJ5RBHqbMI zYs3s1Lvy$!X4n{*!X>c;jxk&kGjx!2q6d$Go{=S7CuaDVz#U|SC4As^8li;`3pC|` z!@vkFfWUzV4Ok=0@PP-c5oY)pSiszBgc&}DW^hT&@G*i%v=L_bn3%yL+6XOt!0`oh zD_Za{8|WEJ$v_f_F<R)bT3YH^!o$uOGk6T)J~2iM9!S_hQ>8Il_^=r08Nz*Hj2S>i z@HAqKC4dk*F#`z6Sj+%2Fok;*Er3`}4fTu>mZAj_i?N;sJQPgO!U*ISc$Ar72_jJW z0!~3DXh8%{LC_E~!3-e-P=<$SL<=DljaUK*?hzBr05XQBb`#71GBcMF;}R$+%1;Ir zF?uB#MX8A?#Z8Qi=2E;|EGe1A*-eZrMwWV(QmS0yU}d?fx%owvdWmI;nK_9`IjO!* zO^lp|76#@f#(D;ZQv6(O5EV^~ET($qmQu1@g2?)cii<%y*p1B0EcGlv(Ibp3ja<GP zgUWZFywsBN{Gx2VVsNp~2^uRfF}KvSkdono%N3<2mo+hR8-X@XnHrc{>KRGNbBU&d zYYm8N9CLE=lM_o)Q<@lA&5ZQSO{CPhWI+l*mZugM>lx_bQYgm715yZ6(8S1UY_4Z& zEG5S!0uo0z04^`Y#R-x(&`Sr`WhNjuOK}N;#1MLr<V3i*Kyn6pC8?k@z*$W|TdG0H z7bJ?%fg&r#B><8&&@0F<Pb~^hEGa2&Vq`V60NJI)B>|E{=)|H%hD!*f2C6>*R=Kj8 z8S5FCNvUv2fn?E4KvOj*BJcS@21br@p*`pm_6DHSr7TR%EKN-eKw~@jI)9)Os7)<Q zupLu^(j37#*9~fpm{@`)A2G(94UO~+OpHOBgAC0KER4|lu;BAdpE3S^az7K)s;a<f zRhgMtfR2?k0xbkFwlKiksxmP(umqikjb%wTiZ^ghb{iUi8a+ma7>A7;8G=rNGByW| zSDJ#(8b<BH8iRV`&lxTEN|u6}xRn@9T+nV83q#P&1E8a0@J>&f8C#fx#{Vs`ECNCC z1<sy0$QLG-rlyug7=!1A#(JRH4FfaK=(&*z>UrHp;1f+>F!tN6I}h?k704T?t3WJG z42+BoEI})a3@t%NuH!y7-3)ZxHt5JG%-L=fZ{X~SgS=s3X=H9_jxqLZXsl;qVq$Cz zN^qdXAgE(h;4@8MG9LVDatf5Dsxi`(iGi7!rG>e%G3dMx{98TEj7&kNEt_FGfgi;i zrnuHL8yXntfzF=-t@1!`sT=EA7+V;c85^6MT9~44fHndjYWj+Cz4LbyP-N7AA_HZR z3fzG(Ff;%k2w-fAw<m6B2|oXZ&>)o|&Yn2P7iJbFpk4dugH(nldPbn@04&WwD}qf? zFGDZ_pKAJ=@nVIsEXW(R7~U|murM;PFfcJT1)Ym!hTj`Tpgk&P*iINji42^5aYF-8 z*=h+IgvR0xGtlY*W6<tlBV)9MAmDRN-!K*(JmCRKQ+1eW%GA=t)Y90(%-jrgdI?@{ z7=VrsHN(2&6U7@i`{E#Pn3!6agVxETrzulC149F2&_Fuq@KlteSB#87UGcY!thV(R zK#@_85g8`t#-QyAhK6Q_CYF|XOIuS*(9r{+*$)C49A{VD5Hy8kVPs}xioX2O$k0^J z478)%($dh#0JPr@WhmVk)D?fnXe@8L1LTbcMvT}nw=gm_G&43ZFaxph9?}3hUK(_K zG@<eq_vxmF2BvxjrshTlrs&5s7#W)BnHgAE7+RWGn1FWJqk03>7k|&Vea*yxLkx@@ zjf@zTxUr=LXqA^C=txb_F(&v14NWaf%|Vr=F@d2^+y|T*8kp%B8JU=18{sk6GdDLg zurxF^H#GyDQjg*h@BybE7=QBiTn05pnixUp3Z>#OF*Yy<wM5J<j6f%>;5{<e)EsmM zC+Kb!{0YklPc?3?XKZL-gmI3vk)eg2g&F8l7tq|aIq2{<<iQc}DW@M9d*e=C0{NpE z><^SO*W3uS^bmBKqOqa5sR6!YSWL|gEzJxJ46xlBf}G27A9QMHU;$cqYHDDDF;rz_ zpa&ZEG_)|bG_o`?L0fwVKI!xmBU9JXlc4<3f|)-+qg<fXhh}CbptCmdopf(%W@2d$ z+9^vQHt^Kr;1M^_;SlI$t`VrYWdb@i2sAAKI++nAIzU6}pBYa`iu-_~qZKnc%nU6- zXRm=a@PpDOz6n@UQ*+S855^W)mg%5G2kwd-G|XvgW^Q7PzT(`-$Vku7zyh>z3$#1O z6m<)zkqKx_{R`vrUY9MPx}%K|G#ZVPtV|3H%|SCT7DmPv7KVoSmQ0zN8dw;CZd)M` z9XQvV8yXtwnOT|}V~$1}8S5E==86n0O^wXV%#Bd?^%$9ehSa|@vR5yb0>wr<W^8~a z;vkDMEG^7U4e`y>n3{k#Fc}*WYLFP=uE`CJ^g!n;VD61JGBN=zOf@zzwJ<X?GBHG3 z4hcT-^c&;X?HUI_{^-E;2k3MoV-r)*iYw4LBX|p4V>1&|@a_`=(Sf@vH#F9>urRf- z#JFY3$jB6Qo}H<oA!s?Bxv>$-#$qEAP+k6=ap84m@Y&d%;8cZtNV$Qz1?Y4RGf+^2 z8Vb0llTD34hXR_I6Kdod;jYRJO+m-t7=eztMVlNjGSdU?DF&@Uv#>BmZ{>o|J^jIG zT)Qs;R8)0g7FEU;78b_lhM>zbKnrz^@NCC`UIanN8@NwCH8eESGXWiMg>he&k&%TS zsOB;=GBGj*6<8=+8H`LoRrycG`@Y?EpsKtZvnn?+Gq*4{HZ}$A-7z#XFu|LuK(j@b zMi$uCMIx6~xKBSdG_(NSRAUU<!;BsumU^aUrk0jQpi>ykOi?#d8i7wg{l%EOLO}!M zksd4_u`stZGBE?~*tY~N3Bk9P&C~#N$C<IA0f8AnW1N%YhK8Ws^+ur8sOXi4v4Nh2 znX#Fvk%^hPImXHtQ&5-uH>0Vw%np!8da-!K0JORltkc*Mw5I^i2#JZMC1_EeDYlh` zC^3S&Q*LAc>g<^qU|cg|WNf5oYzaD2!^F(e5_HZqO5+NA4(cDqTyC9EP<hn{F0W7; zSEir?hb=(|>slI`nu6|n!=2SZ2ke=fnGtN27~@>lW(cb6K<6M}ENe41)&nPU&@s)R z6K7D%D^pNy{+ChvQ~YL7PVWcjbd)(+V>8fYFJ>kN;IRvQZ7UNC6YvByp|+JV?#kTA zSkJ&5v_=wRjKtUkv}M%H!qNnETAvZ>$v;M>pvwFoBd^o}9Z+;kz>E%Kb4yDTOH)Gw z(AEpkl7D>Z${aKj0ouiZzy82|9;%@c=tyQu12c1s&WEw79{6NjLle;UCDbdajKIgC z{%1V9)B7~Y9}~g;Ky8$OwlkWTT7vG$Ff%v6m(NYiEG*4U%*+h1tZqZe9=NM>BU3$N z6BE$+85sH8OwYp7)Y8Dn!raKf0)0)rDQJ?sfoW@Bkpd`LO#&w?RDXbuLo_iqHL@@Q zT>yu#k!WIOXb76V#kS@X#UHq<b0g42Jm!X`#^~Gdjf_DT@qqUEo0%GcR<fYxa!_sF z$aH6JLM6x>lQF#kIyTb8#MHvj419tjzH81*OpQTpQEYdPp!foJb#7#?XJP=_WQD%t z*vQyI&(aiBMH*QcfQ}PDog_B}^~{@?G;<@3L8)pAW~wqXGBX5U_5r$l(hTqMIgmS% zOiZw?nMC#n?vqgsjVwSL?m-<sj8tW*XK4yLmD<SEz|ag-Pa=0cz(=DtGu@joe+6j$ z$W%tq`c;%d*TfQZU>|6R!NAPi(!da3eQp9el+74)h8F%@4&IQ9b@ivAk)@ugfrW_) z+EJE9CWfGsn?b9g&5X^_Hfn%RMr~m-z9-c%i=ByM8l%-R&}9FjwV=uV1HD&JC;N?! zV3XmPGj68FQj(B`0B93#;Hfd_8UeKFHWmXtW6+cuc>Ms@={Bg5*k;?HQfQNH$hKil zwHd%?^D$@IOwC~)K%0qVHq<kKNuf<cLTv+238K&QqsU<k6X-mnA!eYM!Dj>wF+;@& z<Ohh2n85;{h&4nD7Z%WH0Bkba5G`a-oQf7QU^$pm(Lx3^(F&i1HAD*=76UyqxKq(5 z`I!y$;7-Ld#}7^wU_VlGjvww+Y;*jebO^B#Ti`$g0Lv7=0X(jZFhd8N-XNx;g$_7a zan13ArpgRpk%d0T57r5F54I_OxG%9x@gv-WKE;n>DrVX-ga?l?w%~y-WH82-c3_@F z3msN76Fu<a8gTF!qX&<P9(<__`t&~7sZblyXZOMB3MPk^u~77(<tr39%xnc;I%0wu zG)RjA@B|I|)IQikD$VShni}gF7)$XXX7-s)^(>`iuukl=fo6HY>q~IX>zjg-G<@zJ zGOy2N2D*d5%v{gJ9LvPM38<53Y-9wQ*q6gOvCm>*q-QLpMsQvqqD~ZjTA#(lT+c#E z7T2skL|PbSQXjmO0OT8Nv-(g;Vbp1T786T76VQ4e)R}e2tUgQ<%cMS=k+FfEp{0~E zzFB>kB3#q@=H_|^me{8C-9Ip|7h+&3Pc1^s?t>MFKZ<_|YDP^5H>1#+AE5KAjf^cU z4U7#yx18V^7BMjbUF=|tZ96_nGYWSn+}J?R)ChFTGe)1!#7NJ;+|0zp5_EGfXtNPY zs}_8$c`H+-9^*k!t9AxvtJVxOL~aN=U<-8hnHj!~mL{N^MvW}Zux%+r@rN<4?R|#E zprw(<rkFb|O^o#n4NMI|=Msb3gJ_GQ!RMN{G37m1F$6`&OmK9d^f4?A3=Ke=4M2zB znHrej?PC~%4vn)kBh+`reX_Zsu@R_;Y6!Y(1Z{A~!~}Gxk-3q%IcQUl0qV6dM&Pr} z+nIhhF)aa&iOj+>CIT7&HUaIV2F;&X;Ju0%w7lHJ%-90kjn*jffx8n98ZiJbUj}V^ zLRqD5Vyb6oVF;T12i;O(fqH+e5%_@f4kq3=o4G&{G8;2OK)X;Z3@pve4UCOIhu`Aq zgM)TB8ybU7vnS9x$2~c2Y@%mj4jS^t^oN-qXj_GmDQLg8k+~V_m^%27^G>GC57zz# z`C|^)AE^1<*c^1|Bxvaj=&(RDeBC}{3(z)S6KtoAqQnR8PPnm|9_S=*L-2XYsPSR0 zXKo6*7ZB9zF)&Bl*lq^ugm*FhX?0!&^2c0Ee}GRuFfsw1T488v0a}%ed*ujdnGfig zSpv&=OmKI?jm`Cpj4VwIF-~AJGO^Gzw=e`<$^^RO)zAbjK0v+jZl;fqXZ!^DV;<Na zC>h-tbWxk3nW>SnnWYKn+<n|bZN}z?po{4&%?WJM!hP1cp)u&70Shw|%oQ*umU@=P z21aIvpxYEp%~5YmHv%7a-oq5Q!B-qq?#>67yC`FApu1r~S7{g-fQB6L6}zC-SB55L z7KEw~Q=EIv42>=I%uGO+vzwy#!c9S2l}$~}K`U{LK_^h4Rv(~I^<F0V&l~DM-dF(k z25NLzm>8Iv8iFoa1z#wOFPoc!=C({Nu^j=6oIOl&?lv<tG0?NLFf+lpdC17rNYB*R z!ob|j&<u16KH8W%_`LHzCds1Rxu8_F5KF2uHUteC8kvI5YzJKljwe-t_Bfha8X6H; z9%hQWHa9WSGd41}G_=GR+%W~MytOnn29=qhn?_M{2l&wQex{RRrk_CmScK^h(Cw-g z7N8Q{)XW65LlTcajLkt;_n4Rw*jI!5+;c+{V?EHC0!z%j$)L;CLF+9{K!?a%8l#Pi zfX_Xjz@)&%qz|eF7h|ag4Gc_-Ks$?!K~vurX86XUL1ATRU~XwjVBLi&?g?@e6Fqa# zY6UZl>cbSYHPFP&5Oi+1r2*)wVdPON@Y&}RnJi~TE(7I{CD`(Zr6nlAn1PN`H8R7u zdeRuwVgT)^B2Zl6KK<O#1au*kp*iS85wulFrl1R<jEzC}BAS{Tqs=UX4?my86!m|x zBFGy{!QMcr1&z%OOwB=)W+n#apktx%O^_QK8k(3{8WUOugZub%LlZMl9bsvRu`0<F zbQLq`4juy&3p4baS&hs=6XcVb=I7@{fwIRkaP~m;hKZ?}nIZU+24gczLsNWXhTy{8 z*xVS~$-F4V74F&`)TJ^r16_xPzQxznQqKf*<*=EVfswfZ>it|s;1kfNFnyLx_yvlN z<>2T*DRoUj=U{*?9t7Q}jDO#|k)^S@fuX6fC4tJ^6nABAVxeaV+F50Re&L6a8K_%g z25R(JfF=%5k5MoO)#X!}Lbp%Z1B#9n;OIc{253>TIcWI{=wJ>rOMFZAj6gR*7@3<H z5-P2552>4iPEoTovc%kXW@e~oW@un(2)auRvM~)MlY@rTr!mP-y?g}}9V;=T!`RRO zv|Pi?0(8!t8Q$Z-jKFu>8(Ufsn2<HYd3A}QDd=2SGc!Yst{`Y-zomtdk)@@vkvXVY zf>M`*&q1Hg#6Ry=BWMxKD)4dzl;|)q2NfMghDM;0+rR?f5tv41W@bjFCZ^afRzl7k zX1MEeP?c>CTIYzKH_SjcJsO#V?p`ss0NqB092wwq&}T5Q1z!>ZMaF6@kpa5F%oud~ zBB+eOd&hy1sksSgOEk9Q+);diyDB#YRe_e4=4Ke1mCa1`Ku7gi8W@32K1OSifDb~S z$#n3m|2mL2)?o1lX#UgC(gHMtZw^}6h`S~?0$&UaI^__5{|Wa|=!T{ypesTRj4&5a znwjYtS%S{=GBE&Mrhq!7YysLiK8tDR(QDvt$69a}M=5bZ^K7P|^X$!yKu2rgJ(ASO z*wVnn05thbz#q6Pa#K@13scb2S&RcNK!a<bO5E7o5Ont$>go~jVd%4&^i;d0LD8`e zGdhewhglhe8cd)YK=2++Zv-l03@r?>o&1cFs&IG9O+gi)5$GrljLZS90WFQq%q$I! zEKJa%12i>0hiU4|c?zH`z8*7+gH~yP);?Pp7=v0?_=ZV9S4x3yWyE$BABs0{FLX0C z*RudEtH6v5OFd&#P|pd}nzt}OiwsaTK9?!M!+$=g-q-+6R44_Nu{r2EZxc&Pb8|~` z14Dd`DkDP!OA}Mj5z7S96z*Ew)I!g~z|hPD<C*{?a|1nNQ)460a&u!76Eg$U);jn| z^m$C%yR}0>iE1NeqB1r!0-e}vVqpqe3WPsz7#NzEnS;)6Cg2a;)wrppo`t!Q38<@z z);Kf=-(7BCVPa-xY;0+Wa!I9;1*jUI&*Zr13i}RrMvhI4R+~VRm<Pa<m=9L`pT{UA zjo6C@9nZEjH#9S}1no+fl0`^DHmdQM8Jim!SehAH>KT|Lb~_vBnH$0;0?{TwnGL}6 z72t_Xw7EVO1JH&|=xinClmuvE1*{EiMgp{36Fwtp0^0nC*jo+WAPSvQ#hj2ZhR?)e z&PRZDK7wsSo2dcK#KLVuo2g+o&@+X38-1DvX&MiG{u4Cg2%n2G#0(U~yb1aYD0puy zbcPGd1Sry8X0&i&G0-yyjrN15l(5Z!BHV)(G^mcn3>-s*v1p+Ki6`ik6Z#w|IHI6F zL7xIenLNcZ2WkXL8DO7a%z+x|!M9eU?{fy33U@1(jn0V8rdTFH5mU=XXyJoAuZBJe z3Qiv|Phy4+l8tDo2jW)P{2*G60&R3gZ1F{(1O<gUJbch+L6OrBmPt^=<T92?Q24Ag zwr$Sv<bys53Q0cDL_pFkC}>z1v11!EfXv{-(P0-GboG7XB*hgs&p=a$j;I5Qg{ zjvp|=%v^}MZY=Ylh+swE<BXgO(C0x}4D?KlskOz~)W}rN!UAI=6xR-COJg%Vb0aAk zE_^eg)SAx3+@%a!24;?Dmoh{iZI`mKi5@7{vCU_)faNfDDVu`U*gz*75j%w;^O>wB zU|DHwyOh~Ly8sLg2~2206+z9%*r#l4u4iC^Z9)@eCKIg6S5(9bw2*2ucp(+aNVJ)O ziK&Sx=u#BWwJ-RVcN<z7g1VNL1p45(?=&$q1D)$(WQ2Lyw~@J#p1Fmw1!##j=!R0X zhApTIzJTe`0s~i2Q)&xlQ_92uv|j>rn76qh_=*eM-6ccNDes1$E5GnJrEp(rVrXWh zXJ!n#$pZa0S|f84Jwr<a3lk#?(DB-6d#%Bjnk;1cQMPq4sC~W_vwd!61R7{FH8lcV zGi`!**wfG)6pWy2{0MjhcNZMg(>5^xT`+^*AT-r8votgVpM7g?W`eqh5qzo1BBr`- zZY@w`Y{QHU(9xdehM?P#4MAsQ;u~c%G&8caur#(bA+T^2_q`^DW}tg3Elfbi4x)R* zOwZE9z`(@7*u>J(%m8(zB=}mB#Z1dhzN`jC#&*oeFg3HZG&Td@sb*|yiTA)TLsMf= zztG5tz_5-v?x}GzGd*(yP`?bl%Llqb-qg~}#2j?Qwi()tGWcGTB}^AA!{>k^V+S}g zP<r4-7RCk!CWhvw7N9n{ff>GK#D*rupevTmu-!F?+~>o6wTU6<{&iy`(1~8?kzuK4 zXklV#37WPuFfc{!WPoorS;{o$cT+YfGIoL^1H~K0mWH6ATLWVwV<Q6tBfOWYfo}9O z29*Z{rfAGfaV}Iav(U3JG&D0d<U+l=+{nT}&)Ce^$ix)1$rmkugKsuj#-wdv#083s zUEs(->A9Mjf;QV(TAG-Ec0e2AyY|u0$k@!l)RItPYmR$T9CXA8=tNQ@jNOYChI*i* z6wJ+xEX^z}&CxpGmY@#!a;Ae3C$55~XLe&w&ls7TT3DEY#`!JG%t5Da;hFXWjjDof z3M8~@1o!<WhUSKP1}2uKMiv<R{wzS(I2#(87#W&b7=SJaM;Y?81kH-CV45|7=Ll#d zVGrg=f{C%Qxq&(8b^~)uLt}Hic>}bk+r-=g+ePdsc>{M3+}udd0CaRe=BzmAE*%SV z&;Xky=<Y-Gq6*XnU&&<PV=xtzuJ&T4D`OK-zA`eh1aG*rz~>JG(5`V4V*_IXwYWL% zk#x|#(`LrT1{jyI8(Em>nHz$Zub6|5cR)Lm*b-EWuVM=Fj=us*SNky273dmI6EibY z&|$!)pnd6h(v<;dcfGlhu_=M+GTgVE7@C{t8CjZuHaeqEi(8oLS%9bQEI_O5jnM7~ z0pD`6n#p(y-$YQl+K-v8Kqp`tnHm~dnu9K|Ho!N%Z(t6(D#;Y<l~~B>3imxHhUTWA zvsMj3J7v(8BUzZ~S(uoZ8=IRNS%NOgKpCMj2H$hChH1g)?9ZTdbpSJ6nHm@ynShQP zF*Ps&?fAj7$j!ja2-J8Zv~$A(_gK0)Xz`1ok)<)lw73Om@r#kA0cfun=vpO|<3^0Z zH=V3yat!|S85A7{F{1-?5-n%|4K(r#+GU9^S(zGvPHi<LbPg--yG{(v&Gih;Ese44 zez&mDGY1{GZEOj;GT6cp<q#WV@LebCn6ji7o&iP2A<XCi9gSgWVq|P;Vrgg&+Bt~3 zl?ys#-Uzhuk3hr90{39LIq1|_(C$8rc|XvF384FX42(?;P0dj6J~jqlce0-8X-_Bk zFoMJ2=s>B<O+b1;v&o>FXbp|<ZpAb(HZ-#UO(_$Y-M7F!nr;pnZ8kD6#=KO((m>DB zz}U>x(8$=_#KIh9{?ZtH<H-glqb;l&pf<@7aGM0BHa9i|U9buoG&MH{T~~oGS%Hon zGBY*Cb_XF!F2`M+TNvn>8JdB%%AmJNERFOG&CJa$3@wa6cdaAWfyUq~Pc||+P2R%> zN>oR&B`RakN&A)-mZ1BV4De0+85n|Y6frg<)F{Dy>4~9*p`JNta>NK@!pzcG&&UjP zoB-%dO-nPB2BI<e&XY|{594pV26^KcrZ-Ft%#94pOhH@N3_!;f<BJRf(5wXLW;Xm? zCkxzFIp`WfP)TKgvFQ(V4WR|7k~J|mvoJ+nX<-b$_hd5@qtdK-pfq(HGfhD@@|hT0 znwWylQpQtrSb#cCrshT#*v^ATNmDp)J~6Z~(F5r>$Ji@pX{u*oY-(s}U|<TmVF|6E z0#)Q&n3Q%aGl2@+6W|<<k~2V=$;1G(k{2{FVu9x*0?^7aGw{Fzfr1M6)hC7)rh2Ak z#+D|S$8A}f>lqrFnt~QXS(t+F3qqPqHU?jPvX$x7lV3kT{y2%nA4W!&2A~UZ4K0j8 zrwrguR2G(?J!~cxri3=jS>is!&B9F2($w6<+!SL=Ea(Jd14{!7OVAEw(5hOLJPyA8 zWE)dyQSdQPsyYQuRVZUTpqpMn(=MRHd@S(oB(<<KH8(J{FgGJqP~pD*#L&V*4>YrG zWQb93SX%0VE*vs8H8wB=Z6!tZ1!%+gcBZ+Z%d<eSaT**ODD?)Y8Zfm4rF+nI7nUY? ziYib@85)6){=uKeEpcxcx3JU$9ff0Ni9X6>Y+$HoXl!6&VQgUrx?2`ye8d=h1IiAj zI~m%0SF<y6oME(D3Ysvx2c9tNc)e;qwh1#sLn8~&84FlXb~HCKvoN!;Ffr9LL!K`) z1#JKW&o`ls?z4a=-k?)hSmuV{`p^ciAyWp>$uzVXGiK1>HPlF~W7kkQ%o#I7xOHgL z9w^qK%?g2M8K6dD&U%=@jl>+&N1FLU3l^vsz_UK+Q)Vb~Xu*OahZ!uOSwD!GXyJl9 zGLL<}3_7Pl#T|o)c`YonW$>8^^w~0GmtvVLL(I>iPnNM5f#w9E-awx%Lk>6e$ubl< zv^0Yvhn8l*a<J(zv@`>mCxS_0rW(ZlJR`JZ12z@cR2gKyAk<haQ)P%5Q}n4ah=ZV^ zgFaUVwi9M5TFL=wgikS{&y|5S!VJY0JTN)5-~sD{S%@AwMizSTbZm?nI&e8G^JMT; zg=L-$A%`bVVVx&~dIEi(4D1P*9G-N8WtI%#7Hk1S<ZeL~Jm&y&7+M&Z8k^~vk~T*M zI?I<Hb7YuX{)|D#n&aN`2bM<L@@H%bI{a4}>p{M(5J@a^WM-gkjo`C(vCWa0fo6WO zZTd4bHPtgQB{W9{QG{!b%+yfN!ieA;8CcaNgF<0Y=i)48=fcF?z|hdh(8AKp)WFmj z-@0K7OJh?*b2HGXiUb-SxI5mK26`qIpcxDF&V{i7=qz7DQ*#p&a|_T#2dE7w&;c(y znRL!PtOj}G9M~Hu4Jgo6grE&s7NEnwOhLD=;T%A)umoMAZeVFnXr(IdyUPqM4fRaT z4K2-$Ezo+b#-KaojEq4G15M1#O;Lw)z&DreV)FT%dl}@7^O)WMEsQg=urL9gT54!u zfWJKpx;_$gWd(s@LQCAs*g#jX85>!eqc3AK1|OekVrpq<Xlh^tx*`R+b72S?Mc>VI zpDTY7XteVJ=4hvpCFl?*BQrD51&hXp_)f5}urx3PU8Q7XL15I@68AbbOJh9~3qunl zjNKZ>pyM-*jSY-VEDQ`yKo^&zCM(b=`W`0XjLXYF?edG@b~#FK&)C?~%n-Ciz{1?v z#KIEK=(B}|C1~}%r4gac8n`bpGqg0(16^$enh8T4?KCzp1D%0pX<-0bI%#ZSj<T-M z7<`M_UM7w0*9t-D>Jm6zq58wX5_Hz0iLs%vCFo*kJiR>&(0&s`(7-BzT#kDb-O^Og z#N5Qd9OE)JV*_(N10z$=&CZ|`cMQ<F7og7fKBmb}E-wdl_AY}vdnn#8F*Y|gH#Y-a z&}e30Xl{vn(AL7j40O1%C4oMx5$<cu3@y#{K<AsA7-8lP3q8=K&ZcJOhNcFf)Qyrm zKs(F!Grjf6`vQuLE0~dCY6jXfV_<G!2nuEcJd?;4phMP8%*_l;@ed&w8Q|`ETbk>c zgLaM?qYq0NgRW~b2dy<VGBz<bK|Led7<`f00j3Hsre2UYu3~xvv~j@{d_0qdk%g%_ zo;?nr4xTA^g9;&U;2uJ^w9qp*F);*9R-;b88XJPH3^BC;^@+{ECtM=O2KXYggG?_9 zHVA^U_%(1AN2xhLw>z7Gw$~Y$S%OAn@kWQSiGhW=p|KJEEhk0>xVzq#pv$F93_x@C z=>7n$AORl&YGDYvHXEg=0^ekIh-txH;R_&tT*vf>iJ7Gl=(I%>LrViAOCw{v{xC8E z9V%={VB@8c0nVBnbPF=*DltnF^!xFQ4UP0nKyxb=rsjr5Ca6~(8H4XKJIo~W^!yx9 z9=`$3<EZgrY699h1Uh>Fv`4@M&$eXHfu;rq2F8Z?N6?K7aE_pZZxA*&F*G&DsK^bC z^-PUS&CLxhOwEi9PzTV#SD77Q+V<E%36wc*f-?t-FN{D3;el6kn;2Re8{@kT)&jJ@ z!5nlJHQoZ($N=X6I_UCU(AAe_Cg``28XKDEnOGPbn_C!~8(M-YNR-S0s>qKr?e<?( z0*Z`V;K)ENa7`>g7t)y<TbhDy564&Fnp>Egffi!mUzuQJfU_D0-Cb*8Vrpq>iBaGh zn(7%_nu7+U3@lA7%u%ZiBTy}VjA`|W_tQX;aT`lySb~lcFfcPP0bTcJW{z)k&D<Px z+Pb*`fvwe`pj6;OIZ#W`5Ojf^sS)VrR||6k3u8;P^)AMsBS4LeOiYapL5*z_lvO*% zMxd$i<4k|u=KF!XaR=-Tl*lkPHZwIf0G%Cc06Gu=Ux90GW?~3xdttkD8)*RD$N*<0 z4!Zmmd=I=KW(GIcGchzU1RXeP4!U<6wV(o3;wPBe{s?~udE+kF8z@=B6tsKE(AeC< z!r0Ql(9{xN1_$i|v@|v#a4Nr%A<jKzpnEQj3_)Ap&?dr-4K4IQW5K3|2A~N|BedxZ zBTy}Vk}2WuuW6w2_8w+=YYg5wVQy+<0J@RY&=TK#hB@fYd+;0<{w!{Yvl=%tumEp# zx5R9X7=g}@F*P$VGdHjRovw@$9pFn)PBFbRIpqzCj{D%~KuuL97Dg7}!z_#}Eb*Q@ zZUH%>+`yQ?u^dK*IID5cwS-2XL3ksK4xo{tp1C>bB2p6*W6%~@RBwPr&`&en_}>2< z)a7`9+2t^{09D@x#+Kk?%Rv*+xI2L6hGxc~4ljWXK%ilMMbtbl1k2-~oA4|^m)xRX zAYyC;zC_&8$lL;SnWr)8))`~)Jt$|GCaH1qfjsgM(<7jb`k?iBrY07kqmvBr7FM7V z&BDwA+m*w}+1wC!Jq|wW+Q`7z2>k#BWAItm#%3mFrY5GK{Epg}1>b~nmMKCYt_qZ} z9$`sXpm}`Ijx{qA1JIHdJdJfTOCv+jmAwS&4ny4axS@$2c<R#_eS*o@$W#w>jDv}} z324g0)Esr82>2?Lb4;^L_JK>?$6#-u6j#RPp!{KBY+-5)8kaD{*9SBMU1M(sDxnGF zbKF(Ap{bscnTer+ff@S9f{~e?g`ugrp^2%bxw!$#GGb%!RVe3~?Aq?m0M+DAu+`*7 zpfgqsKw}GLCWd(S$61(x4m~zAGB+mB$~6R?DS%Q13c$06nVy-Mu>txvcVi<9JtIRC zbI`(7Gjl^DGt}8v@J%Qem^65;?t*;r6zmI>**+5!GjIpc+}P9@w5kDj9yc>JH35%m z;U66Vohptqk6Y-08b3x@id;)Qa39Xh+yqpVpv48KBEQJAZ;A1FkT0HreSucwf~s=R z$>T=mM)=37K-butf))VaA006=#5oggWN4{pXl7w%hS3}`HqZl|<z!)OU~Fh&W{j4< zLG}10rgaGtuR*?ej_C{Vp<RaNrY1&4W}q8q@Qf*#85@9Z?Y1PaQqsr>cRg-opa)w0 zj@gSfHq^5KZSOTRFfuVVLR+z8464R2Gsz!+rM!-vk>drU)e6vz<sa~j<&L|TvCmi< zf!eYLpdAyKTl_$SlNRO%#ujK>{7g-8pK)pe-&uz?WeMFL1)k|dn?``_tb@)IqD{@g zCQ-opuuiZ*XF9P@BY?G`O|O7vEa6j+XtM|)r-0^c!1~aqR}AzF;Tr()%&wsC@<X2O zpyG@r{J=#+%wPdu<qDb3#1<~l`6KihOITP#G@^wJ*cUL3m?1;<lqLMyM{HA;pg9Gw zYp_gNBDQ@|b;=UzMfBZ$kg$PCqJ<48)qqkI#Hnb31Dyni$YD!1xTY*2*O)@5$<U`P z!KOl;gKfqVl!(DrVwtgo&jXUWxes9|T9yJQ4wy^P0tYMy^CMc=uo{_z$`+VT%+LXy zrVRE5mMKf{5tN|ogVCofVHq5v5v{NRI|phZ73VDBVTxtW5+R2fG$vHr*azAnM%u<c z3&Vli*atrO829y~MqqigX-gwh&^iSi)0PlPjFU=DAa_1vKdBTViFMM_5PY*M{*y{U zw`zc|e+5s9Vs7jMosCX#($W~Ds?z6g6R2zP65J+7X$G2uR(zQlnphZ_8=K&}oZiCB z5Y%QiH70PJixKXt%Z!W+^^7b`Oic_x&0UW8qSCyQ%-qx_Mj>NkBRvaaGec9*(luiv zQ?%JW@YQ8kn0~LzSq|#zy~6D38JU?|n1GMm2i@mjf_Hk!%)rzPbcK@<fgyAw+<k8& zBR$ZOL?)K#=j#|78|#^y8G)`mF*Y+WG_yc$mV@suyUMge!LJ?^AFsjjfzqHgF|f2S zHMBGXos|UIv4W>5XliL}U~Ft=LSPlT5$?Ooj6gkX&<L{y#_Ba=6FoCa(D0IliIJ(P zCF-Cp`0BE2O#2t>3xkGq-hhX6P`qJmZf0r*Iu+C0)C_bD2tIFE7#M@6m<S9#8{zJG zgKpO_2VLrg86BWJ4LXj@%*@o>0(AWb@~Eweu@E!Ibte6A{w|O|-eUR#beM)A_$Uf< zb7Q>w;w((f%*`x}O^i$l^e>EXcfE~3do;|A4K2_&Hy9g(_GnmGf+n@ijEqfDuRAdY z-(7ZtNxFZ}0#Fa*9cB;1*xb?#v^UPe(9{fcB`d!8Fg39RO=A(*-v`=Vhiljtyl>jT z(hM_IS?C!Ufi7z`Ff}nWM!kW}7<_lxO(xl_D^EeO@g6faKxZBrTN;4|QB2H@jqwfJ znwl6Hf_5Jmn&BTmFv2~E4!T~$+|bg@2s1V;^$d(aw|5$uf+n@m2ByGwm)&A|@@gG8 zReiwphmi&7@)^+jZO|Q0_|9~(Fa=FOflg;5l&WwpLkC@o1=>%Ed10iniGiMxiJ2+r zkUP-Ki6Lsg6?}KuZKmr>c^g2f>LZp^Wdf=a%*_ozQzoGK2;74R;EO(uElmlWBxz)X zyY~&cW8KKq+zewB-NaDO#N6E2+|mGa3pMIBi^kx)%kD5GY2R!E`Qj6%FU*aNjg8Dr zK(kY(=B5Vt)}fmk7#ka!n;DrA7z)9Cd6|*1p`MWu=r}+0TSAOYKzHR?fXfhLOG~u4 z0QJ7_GCkSrEdt6LpRuGVQ*%QD&{jnwLsJv{bCxES21e$f^V{%mL^i^Ga~bG1EHevZ zBNL2s@{CPD7Y&<OfYy3|CMAqf*H?gVF1yE6Il(9vRFi+ftjUcH4b2VBL339IpgmTm z_y!40%t1<x3=Iejui?JA%*fb8&%n$Cbe}5vtOjT$wV|nnsRd}8mZ^mqnnysx==Yhn zei!!w9hvYId}IR3#eT-d2Bzkq#WJ8X@bFD(n1Js2wlp*%u)W>L80S>Dk+G>B==@Pb zBa9N)#9Yt7(8$cl%mUOVLEF6qzP0QDQ|;09_Mqm-H_YaUv5A?np|O#fxuuC2cm^7G z4mUA1urM$K-D-rt#5KlwX_*nImNPI0)eC5gc1%FK%s|(>S(=$znxY-hZ4AD&>>*Q7 zZz=eM)$drmVGJJYG_e33`)-7{bqKl!2z36NIsPk1jd0&u2D(Ga!qC{l!USXX)x=WI z7_`0H!ra0TG~0zTGXuV~>=Dz}{F~;WJpKcm$595*O)QKp&CN|fvmq9S7G{=sPQ0}+ zF#=s0Yivqj>no_Fz*UVKgO1?_ErCGK8m0z%#wMU_V+q=CX^yr<5qxRcV<xMnv?(Be z{KWK!v6-QXxw)mO8R*0T&<$32nj@gI28=8$jR>`Jjd54x#+G^(paTJnF>;5gp`J0Q z-(hZHZf<FYHWL88wCoAf{{`lvpt9;0W?5xoVrpP&WNBe&Yz|tWhc`ZqK}#GhEe#2# zE8G>i3FsU%12Y4RgT{?bjr2^7j6fHAg08YNMXSh7LBr@znT%t5K7q=r-{7(erMYfm z3EEN%+B$1sU}|7s%B9N1o0FPYl$V*89$%DLlG?;5Y^i5yX=!O;Y+(%A1W2gF#XTEt zVyI_nVPRrsfw79p)EKl(%m6goXJ%xEdKI2A_|mdxOuv4=VFsnDKbWb?$k@`z*uorK z>zJ7vTHrZ2!NS<wz}UpdkihxFMz}96GcqyOGc+`|FtNbs%bJ?#nVFe_F5fgZGBz|t zJ@wrfd}-NproitzbwU34i|G#&6Hru|S{N7`8k<=d;ax~<Y-$E-zL*;jXporTo(?xL z(E}|VFu|M;Fa@6!ZDeY0WM~PR*FY()!1tEDV469(>nEu0_=ly?H8C(TwXifc1MNXH zz;|wfg|UgTftiH?!BtcyxVz*grg}z(=0=vLn90ga&)m$y(g1WfpQVvG>Yh>X<tHzh zwp*mDgQDX<I66@Ch9S7lF#%nuXJCl$#9IqvBTHiwGXo0)0(FN8?wZ`hOwZ69v_1!; z(_so)eQ0TDVGiCgX^yrU41D{^E2e|@7H<Igqk#!@yE}?MjLpE8#)B@EH8C{8cK|VH zb+4(Jxv43kvI_U@Cq^dbdPbnVtp=F>u+XzGvM@0-0d3?pwm{1s;M-4LGi?dB`~vbv zBc?x$3{4HqK{IBc-R<V4_@-Zt4Gcl&n41t-o^E7<yGw3jp=S!Z0ow#)Xu-@t4|La` znS~iBqne<Vx!}uB-Y`9X<Nps-c{DKz?P26XsmzT)s|yW`K(pzVCWeM)cupv_FtRYW zFflMUH6_rSHNia_ZepotZUVYW5o2|NnW3JsfuV_^rHQ4PsWJLaeemrkZ<!>`9_Vak zXXI#RvRV(C_nWm2bU)#P6@TV4BHu;@Iogxk(8SmfbTuXD{y7=+vpu;j4NOc7j4TZ; z(Y7k$oA(3Fe}HGr(B}PEz_Vu1$vw2Oc+jK@TpyN+Klp4L+6)(X44>Nbeuy28Xp<D6 zgB0Pev_w5-6y!VjtO&^yf6)0G^us+N!2*-S3>U;sJ}gszh_fWI?N&s%70(QgA?7p% zVzLoS;J^>lMBl9l@(5fKeY+wkSP_y~QVl{9J=uWz;jnWZsXF-wofkr%`~#;qXndd_ z?FsQCOe0$8fHlJ8(2@>V4mK}_w#k(hvRx6X6U*Em;tWpoutC1W63g5leE%Glxj%#) zo=IbD=X%0Z6-noM8ky@Eo57+H%XUS$bFj?)!P6s_xj)1XQ4_Sl0S7rWP^mcghj0v9 zra~zl(2w;5JBG*&i>i1wEOLT2ESebVnVFHaW6^?MI~K8=>IoVS#CNJESRQ@y&jNHv zC$7mquq4KwMH4+kV=3sKLd-pjU|AgJdKwt%nGw3E&=8^sYCh)lA84G7@bn)@)vxpf zUQipog-K`^BNu9;(7@c(%-GP>$k5Eh2(%I#_xO&HxiM(JpSd}KuAd3+jyUKdDFZ`G zOH1@aAB;hVWtxJnmNz!Curx*+Gz4E<_KxYI1eXiQ8?9KpVPtAy06Itu)UGfv!8a~q zWNK+)VGg>)9{(^E?u*Mn7fG3bMvO7Xcg&3SEG<mHdlt=2jZu#_Gd2Tt!{0L{$vZZJ zywQf~4bWmmV+%6_@H~e(z9Ww;j7&@|jLbkM&J*wk?vA)AXsXi0%-k4bKpk{irlFaU zg}EtcQ5xz2hQ{D)%RVrvmhdkE4XC#>3GHO$LYY%GHZwG{G&2GnS7wfXu+7NW&>Xba zk5Km&_qAn4pq;%&phHhE7Uh|l=~;q0OBR-(<I^nA`hB1Q^^Z(5Q&-IfMMei^WPt8p zF#sQzWDdGz3*WSWk)b*0GIv7)*8mxr;_ii;f=>1{2XD7U+stGJIw{4{5Yz!MFhIK{ z%NTrX*(atvZ>eh_Z*+paf!fV511%T?ofBznZVnn;$Fq1Cv~$M5$k>3uT$3s8Ubv}+ zo`Io(p^*h<nzGabjrW-tnVOgwnxkGyVGO>s>@$;@p}7yp8(m;;pcGUlhDIhvW=4jf zoem~u`0nnsFa&LcH34-J@n;QFoad|>nOf=@g7#KobY9I3KnJjzn1S-Bfq^CJ8H~o@ zJIlT>ITo$>59+*jgFCM%v0(zbgUr&x)Xc!r$kNCX-yw_^hUO+_<_3l)Mg%&2xbG|j z-MwUFYyc{&&^OSS8-lOTGBE_r!<t*7F69PaS@xCb<^P&!P!{h2XK~c%FfuhaFfcQ; zv;dtohIh`)(9FQd40M(qf%$##)fw2=K!Z+%2CXANABQ$K(z7rCFDNm_vIZJ_W7#*R zBQBbkK(WyajtvxF7@M1#85mlcm>V0IgJ*bf*M5d3rr@()3GMSU#oYrpGtx6Q03B_F znW~KSEKDuULEB%<Kxb*8#Rh0^*>@(r+T}4IfAoR<fs(2~*Ety)8(Eqd8=4v$gYIF) z;}K)fiIb)V=7dre?rPl3SkKtP(7@aPV~?D<iJqmgk(mYf-ZIdHF!E{(@Remhm@c1w zxfYbF`oXCRrQ$F$F)*<(u&}fQnQn=%#5FWDGY8E|5x8K{2=|R;MrI~@przWDm?t-x zo9TgWLo+nCFf%qcMcZ5kzOn2lll%Sq`#`ZV0W&s?&5cb=Kv$@MZecYwHpVxDX=nht z+tb97(7sDkOD<e%>&;B{%s|VijWK4M%+2+Tj6oNZg3hQmMLR6d9JDI^7t@c!dxb#$ zn25z6h9;IqM#km_28L$fOR(_F(ing)Q3dUsA~5o4hV%YWBQrBSGjjv*^`dAsAn0&w zBO}liqTrMNP%Coqm1Vz~CO&xF0IE7BVOAZ+mWGyQhNh;V(JdnjBYfj*2B1V`YG`aq zVEc?2?uy*Z9DIDIr4jmZdB*0JdPWvTW(H=U4flqqhg%zi?=1Vnl<(}v4~mY-n9%`h zj+ufcP7KXW&CEf!M&r)ppqXcL3j=dYLeYV{CI=mEZE0+7WQgGp3j;k9&@`{98E9*+ z5$cu=@TFycneOe>;sa&!Dd0?wQdoiZtXNorPn$J1GBvTlb4{cLXj7IEXcrs)n%oR` zO>PFdg4fK*5@S}t!cY&i|JA_M(j2t@1$CVs_|CF_OnIlgUV~y|DrRgLnpv6~n3@@b z_9+<~o8oPd7#M-J{u&t)xR=n#4EG8*b3@Q=um)xZ80{+1A(P;hZKek1h9;=@G8u#K zEc?%toc!%SD0581k~xe`4J<)jKTBiKDf{@!Dg#4fL(pLqgjQRa;T}ylH_`)5i5VMV zbO0@kL03C~HqU@&Q_)t2S%B^=Yhd;}SRz@*z{D{fGdhe7%*-s!EsaeqK$A6w_*RXW zgQ^!J(3J)R=FH4cs`Acs<$K-?EV%_ujPR|C=Ei!Udnzz*#4`q+acyp4YHVp@Xo=C< zwE$J<jm(Y4i#$NFG6OSKOh9{^L3@=z{aI5JJT;-YrG+tgIGxZAOfz#_=hz#Wo9LOE zf*Q@}?JEm2JwrnSQ$tfjLvu3|&{@LB^*Q+NvL@zx{~@b#XJSrqfL2Ue7#o-w7#bNu zW)^T3S>~2z=9UKLCZ;9?7A2YCo*y?i)w47=HZaDxGTGR|Tn}_cv8l14rJ1p@i3Mr{ z3w(Q7GqZEOtRQHvW)`MLj6mo27@3<Jnt?7j1eIBMJYs5OZfIg`U__w3i~9x?BXiKu zrHQG9F~(etg@v9a=+-oIQ)3Hbb5peC#TKACy@i><aApK3Va>)&SjMKH`rO>a$k52t z)DYjTc;=ux)Xhvx%?Pb$#eD^ek-3GQ8R#Z%GmM6!rGcK2p_!41fg$L?5VU1U;44sC znZG$5Yyy?ObFgH0Q&Z602qvJ#S*E5Y=6D8t%q@+K3{5SJObBhYHpgA3TY#qej0{aM zmseRD>X{jXx)B!Urk0k5sLQ0mm!PyU|9fB+w3D5YV=j}`X3*5x4)D}j$H%1$upaUW z8aA;2-I|R&uLijlkK57`)IBh@Fx4|cIpos}b~_x}KtHpA9(<AuZ3+bchB@$lEAV_9 z=KPQWd=DPxycuXO3RoN35I<}h11yJS7#ltThBh~Zq7QBM12p^%_Z{Z!2Yhc2mU%Py zi~^Pob4F6osTeHtW+w0*W2D}ShnO`$pEm<X1k6gTK?9S-8a6OV%)l{1I2J8*KpV;s z(_d(51`^~@V@cgLXAFu+@Wv=C6KC*QCG>+nQLRKzI>vg2@V!{*Q)j3;F$2g1;Z4i{ z0#C_89E%n};5d=t0?Qerg%7JGX!kfQk)ThWK@uf&5(s_g9C%k9Ob#t$p~zv&SkM?j zKj{-<Axsi8{UC0PL!UiE2|Hu-;4w1S!*?ql;y_dM=`)mxS1j{qh)~Bme+Kml`urKh zvCy!?df+EaBYN^N&_iSd^xboyz=Nj{^cghjUW{jKs%K8xp`VtZ$)$lg^wY>f&rAyU zp`T!Bv<WoO+FekAgY8~CR){3V?m1IEaK^^Idk!Lrb@!Z!rJjiip(8&bif~PznON#s z7!sU51FPEGrrZVU%gzJ$Wl;tYLF;x*3=A!d3_*88SQ>MwVXT`JfvlS}w=^&_w=^|2 zCNS)V`wlZB(1lD!24<jLdT0YAmPVjkdqF3egC;^uP*<vh?=Wj;_N$qs0%{b_2R8~) zdgP#s$-skxp!?X24NUNikeFM5u0S%iFfk@DLIU0xfPFOA!bs1=6m(%6+9GdD(7_`X zh6W}E7N(X)=*I|wFEQ(2HhcSS185QJ0w$py=+jOHMh2j%GgC7Q3sZcfhvpXMrWT<4 z*a<DC!hMCAk%h6InW=%9CC03irKz5gfe~ns6|{67Z5s#p3bRh;wE8!jK`q;b;Fc{) ziZV6^9j;<&U}$P&X>4eOujdC^cxGm9Xh3Lwz#Mmf9Mny<Fb3W3fZp}9G}8lhlq}6n z4MBT+(ES1GkasaZ{IkRq<c~#Qf1so(BSX-geWswzj7DZAmUuhlpxcMc%`Hq#2+TW~ z<2-)V2y_>dCFlqd41bvGnV47_fR2~~P1m4a(qs(2#jKk-hi6?W$RCTb_`}r5$QU#< zZ)j{}U;(<#3U|-X!pIV&%E*wwzyj`D%#1*HF_~Eyg2t23^SFhciJ_&rnT3U+fsr}d zs2lhavmWNqeeF)5l4=QNNo8zg3A!;0l<~|#9>P7AYi?m^Y+?ku3X#A>zd7!nIOHxS zV-r)1qjxMV^*}vzQ%le?S+stiC1`@Ym-*XT+ijqJ_)^S%xUs3FDQJEYbdat&=(Y_! z-Y~Z`H!}xajz?fX0rwqdMxd*hjLghIx1pn!RVD_YR)vKzXc@aHXlonlZY}U7W_`>` zzZ}5Pu?#ahjLZx{+hQ#&%q`3ej4bgiVg+B>1M2P)N>#Y;Ff+2S)HAa*1Yd}VdQ+i^ zfuSB~Ue(yl%mRFnCi3_W_y)6n=JaXv#X-@r95XtMOhNb285)^_j*ql7#dn1n=&V^w z3nL3-a{|L6xUVoXvIJc&Ze$2L6b(H(j6he^m>Zjd?in<*Fhv>7H345?Hi6kfVy_6O z23&zz0~#5cSeToG_G^Q-&VdHHa98A@dyqg|*a;*n+;^B6S%T(XLASr6&)Aq480#4u zn_3zem|K93WkMNFFacj-Hj(-2f9JCxZ>+@P4RcUpwE*8vW@v_Y$-TL`v5A411?coA z{A24DxX0E(%?>lrRtGNBvdRQ>;E$mNXnxKNbV4JVH;jasIVLe1AJujPmAR|1l)2`H zpqn{CQ_G;~OuVBz=7tsqMxew?ps>Pyg_)71v7QBJZ!|_-Zen1n2ik#Q44OeQG(laJ zWCFgzY%+7j=|!2KGIuqWOl|_2%{4PJG6Ws1V2W>$%G|)v(#XQd(ulx>4elGvj4Vy` zEDb=L`AyM|J2Npb(=#zOwKTRc1?57N`5F`O1!hy2v(I$qfD+Xj%tU1j8sIVnohEN; zXlZO<glCEXwBR4K$i$Ms6}LtfxNCAtGd%+%(4htxiOL*w(~hBmk)ffXg`pYB5UvUM z2D7QmMl9dJ*O9KpR#q8+hPX|PjSNlAOhLPga98AJW}v-krUn)SDstRcm>F4`>luTB z3uFI-iGhWlg}H&HA!yRY!oU)B>4gdS4zp>@*W`|If(qSr*gRqZ+8%6aYG`U<U|?d7 z=X7FoGgHu(6eD9xLdgnuRc>jaXKV@DuZTVtZDIgATEqZ!o~?z6A!z3(^8O$b@GWN3 znG5wSzk{;*dT=&JY3iC7nVW*{<}@)gH!(K0#B(~MxtXz<r5U)oB~V!5o+bw!cLX|x z*aX8LpaUokObjh7OpVP=EzMC^?U@*W#?)sprv`h~gZ!}p(;r4ACZ<N_Muz4F2B4EB z@SI9uZf0a)YGGz+Lg3;oBi#3x85<btnVT9Jo138@muX^X3~pM1ZWcGNG&Hn8=?0pB z?=hRn9Hsv!5|q(5VrFzBOC!)&x`C0Ifu*^*Ilfht=4PN>n--QvgmyaNzQ_!8y#r+a z*9g75GBnWx)y9^VM&_V-DU@UdzQ$}8a|~OB8Yq8k!jeDCO$|Y3|C?GET3Q+!;yYad zbl<g^sfjVc4dl2lG6UW3U~XY*VPJ^9s>j3-)P(|_hz(k`W@>DN8Xty+Ld+bqnb&j) zJ_Dtz&6w%R(98sMF9pau#ukQnCjm{(4Gj&94GjscTflvh8TeiVb0bq@6JxY4l!>9a zo|zHoh#+G#3kzdY)YI)vz&DxAVHR2u4{o$?!Hf`NV<R&|LrX&gOG^t2BSU<*a+{l) znwWq_NeFrb=Ttf9Vgy4o12Y37%nV|oXKrW&x&|6_8-b|_N~7Jx5Of&KTxO@b=chpt zvK2EzOhDDErG=3pXwfX_ga+I-h^eu;g|UI9Iib07+!v!58(8QWSejXyn_&9GQqRo9 z!qmb7bP=DWxjD+|*CybrQRXpkXuN#~<d1D&f1viwLEB$J*TtC_SsH+DHO145G6hw) z2B3>Y@Rz)}uSNk~j$mkLV2E+0hzaNvE;B>W?ot!*vM;pw0L_xmXSQFz7<@Rvc5s1( zQh^wmgO+_8gI1y$85`j{4#wORbTo#Mi3Oo!GjU&y0=^u<$ix(Mh7ekF7ku6_=y)s> zQ%lgUM$`febf)?O=6&uDA~v%#a_nHTS__&4yat{Gd~j~sLah7eKsNvznwWz&7|5aT zpW`(&Fb7SYS{NIF?pfmDVook7ZDNF6=m*`lhBjxxY@i39BE*~r1kIFzC+5)hvp}Ya zpeABYSAaIqfVH8`R)EIM;q!86qw(NfDNqy9<|?2QAYc<QCvw2E24Fe#i3$Tf#AGGf zG!6^$ZY3<!fFK`$=XkJ80~)|)c(6<ZA|^kuO#{Lw6tHZcL(ImYPXj{S3Z2BD=Fyo* zj>QZfaIk`d0Db=)IHsV^!8QvB_a&CIGcEAV0>T3p`z#=IipL0B!hy+QrW}N!m`Mk5 z*`pC!+5u1V!Tg9BI0oPw$v{UyV$1<THqb$}VwnR(O!s1$1BB0mqHmysqyeZe2f+?H zGd*L_gg!WZkhp^mt`B_%5FF-EFJhelgvntqaKLUMasCex8R+wW$cY@w^q+w_)sD|J zF$9Gr9~WD0YHof}WfLQ_sh*{jESDf?<Cq>qP_L-C*w?9vk=@7=blN7pj?ct;=O4c5 zKVwjBf;RnU0=`Zb$No8pB*yfg31o&D`}7|~66^FI==gSm(|-^}IH&(W1BQgB|3Ip= zjvjss8sOQ9IlyCVYHkVIJz#2NVqj@(hOY-}VgcHHZ)`^B{tZh|YY*$ZnX#dvo*}3w zj@~{uGSV|QH2^I&GypGCLmm7C-)Odw*(GG+J5axG7q}UPvg#hZl+4h`05n!$f$t0( zbI_u819LM|3j&jvmN>iNpev1xK;x_!YxGQvjP*dfs0=_m08I>y(YqO-ZulbRE1zpW zfxNLB><yIGps_LNig3`WNM>fBHJ5lAwI-mwc?QO27WjunjB#ISW(?|VTNr|-D$&QO zj6i!Jj17#8Oe{fNakSU~Z97}c%$H=%14>hSFw>Ngp@F3d=vsIK6GLNjBfM$K*vt$x zkxF0_gt37kuBD%#OO4Dx$Bkf&L>rmu8G(*y01fO|7^8KSz&DyLVfLD=*b3@m?8VZ> zu(U8SGBdTbFg7$WF*m?>N{6|Lp(SWK$e6$chp_?9#p=d}rl9lpEzB^k$ultmokL<| zVh*}v(!|sd<-Q{m@RepunHSsb)dBfq9~OUr?#44VFa+HTZ)9L%jBgCr1az2(g{1|7 z1(U|OuQUT)Yh-C=0J@7FBUM@GnHm}ynpv7!g8IiOdmv1VKtt-wm^J<R9)dE*e$32a zYG?^M;ls?t%+SQx(hy&&GPW=^2HjsuV2lcM9Se>vDWD61KtYaq9G!`grJlK^r6H*E zX>4MSI;(5~zR_$s^Tg+!9H8hpfF(MN%#1+OZHAzEY0y<#crv-MnFZ)_Cu0H!hZ!4~ z;?5nGdZ5Ef4bjhjF)=m(-BE90WN8UH5fZd;A8F#u1bnC23g(4Z=K6vBaS)3?jLl3z zXL6c=_7EC^w%_3%N-#Dx0A288Okl&7G44yvjExNRj4ez+gPZ8d%Ggj3RB@RbgO`37 zp^hXNfqLL8nVGsLHG}+d2-6?N24;p9My3X!Ma4#@W_YuQG3f3#6H8M={KqaE<G$9+ z*vL@N%)r3H%nW@`iixqYo}sCc31|}22z(C+N_>F2;H#K7yR0z;Wsk#{*~8cvG_`MP zYGiI<37TQYm#hrU3`{@==@6<ra1N;(8yV?=50k>;4HG?619M~0Djy>gb3?S~08Njt zX7*oktrIl#c?5H$4V041%`7bp3=J(UO^op!DP(SB2^v8%F*3$Kj|sYY23Ix*9lLB~ zY-whSegv9{v8f*T{3uKC)@cK@A$21QA!d#>%$Ba2A3*8qD3)|(X>Mp}2s-x9z}V2t z4DT4O5ooiZsgZ>d{?#MKxNkNCU2J4xVhOs}1#Mm#)C>phW;OyHwGA4|MH$)w-)y#) zdFx?28IV7YVfw?!z{tSR#Mso>5Okg$-W~nsMrOvQ;G!S@$|_^rH=7w7ndyP<X0kLu z-|b{#Y@uglX>MX*0t!>mvJB+>0lwL69kb)at9wED<2X2fpp6(B7=TXfG6j_(mY|bJ zanFx~P9`u19ny?<z|a`?&1S}+rKiTG=H?jZE0`Et>VZ!9v#<c|e=|TE_%sHMsIO;^ zd){RRijEUlq60LHZfRy_U}0%yU<TTxj=R`3GO{qVGz0AwA>a?3XSso{XtD&g9V{@4 zD-+P=-G=7oMrLM)Mh2FswK@1=vklB==H_*P^7%>3d~Rd}I-bqM0CX|1g@L&Rz9~Q> zLjx02(4|HA+w8`;FE%qavedJ%FgG+Yz?eD%oxE&pVQy+-Y6`mB6RrLLUu?FK`O`~f z8Bn@91x{BeZFca2CR5N{m6-|XA~`(euAwDpx1ogrff*-b+&7yU8ykW~)J@DWHUpZN z7=cFALDv_8j`c>}#$f`!*lZKCp5Q}qkT*_adc)Y%%)%VBOvuv2#L~nFUn3E8be(|( z=mu>9$qHrj8S<_(&|L{e=Abj_F&gbA#(EY;pdH8N7UrPI8kEuse6iVP<^^HK8ldcP z2An-mV#CB3bcm?2p^=4w1*ms~FE&igEG#W74GC4|hB$YTgKkPNwJ<X_wgB~bkuQTV zF)`IMG&Z+1HL?IDU9=6@Cg7{hwlKd)+3X35j<ewCKq;+2w<4Mwf{tx8GzQ(rjIXt8 zXbd`U#=ydoQ0-xXvz2IUqGw@bZe)SJ6x77TOwZWd!qNbA2q-9nphgF%Hs8v;NP9yY zC_2u8qXWeoMurBUUCW>|LCis?L*qHm)Er!j7?@cQsylFZ%t7nZL2+t^QJI^V>w#J% z1_tJ!_7&(VN0iC~RGDvMo}|S55af^ZnEo&Z-G^ajZen6=X=z{%T9t&m@-Q?ovM@F@ zBd}h<*a+t~a?ni);Mr+&%)-h-&)Coi92@2)mT0FFn1Js$+s>SRl%o^WGrxePXKr9* zU}kD;Y;101VgR}(4!1W9EKJNS%?RcW+*hR-8=LEySsEBv8l&%&H8HW&GcqwW2Q?E- zEG-OCXO+P>rR-ofJCm3J^2J3=Uw{s~2c33oU}9(vIy3`MCO0rM1C1-05?GXEY-EHx zZ&>JojzBj-zoXQ|)IiS|)XxO1fB~Izf|57D*QD%Z7M#ED0LT}YFns}T$(UJ~fm#Aa zrWW`X-W!-$7@3+H5jbK9v?UqGIoQUa^P^47L8teiH4j0@M_XE0n3-6DE}sE4i;!~$ z_?DDi%==d_I<k+Qk>fIx)eg|i-xu)A--MONvCsTjSbz>|HvwHmB#S=t$75({2D);> z1awCy$_79@M`wa3W56?KXfuDH%`c#d8n7JJsXr+$upHV*JZP2zKEH=H_Xi$OhiXHc z!2xN5?;OOO!7+htVMLq2L7o;wo4$d}PeN_OI(-A3OTaSq2cLsMpZbG16Q&U@SeOm; z5E?Oq#SpQt5Hnm58nFfpbS{aSGk-?#IXXkEp#!xNedZ4o0-&8d;HegDQ-26awBTU@ zPe{Xz#S9<B>?fAFKg6-4=yQJ{2f@99Wd|T)h7-%_nWpeKF+xi|;FJY(EM@>f&i2DP z`)6qh%AQcISZ4naUO}JzL-7ih=|4mY!ZQ5_PeEAr03yz1#dd-wJjSr^0hEF6bVLgv z(DivHCU}m}1T7o@rxNr%fZ(8o<{_*TfY7i*p8$je4@@Ik0s?0~m>g#Qf=>aPVCFAG z3PGO%gcO1>=b)86kd+KnJ4Dk!&xn*mG|lx42JR3|LqpKn&A4ySgUF*z0veitG~t*8 zgh*l>qG=3T!vdYA1I>k|78mOo=#`{`x;(5VU|A_HEYpCjmgagUW>QLA5~%Zs1^MNv zMd67hCB;pQP&H7~F^|wR(lfCnI0<MBQgv?Q-EdHE;|jR9fzoR-H2@tC2-<XDU}0ox zXoP1Epn(zS-X{xl0<Co1H=TiQY_c>mFfcU7SZ!!(q-O%Ujor}5!ot+Z!UT1FH29{o z-OOe7i|jzH^sAVybR*CrMo@>t$P{#s1l~@pfuSMf<OKp_hq$jgGX~uPVPIftVu0B) zG}bdQ1zlofY-w(3hBgfdzUgcab4JtdEuiSQh8Z2k#^weVW|o!)Cg!G~TNrS+Z_O+% zL0t{dWFY>&xDn3P>c%F<;PVbG(eFw(F*N}lcW7Z?VQ64!WPv`L3BKxVFZ0<3MLW<C z&vh(AJfM?0K!<f$7=sTs#dCoWXpNv5Xt<ZatyG{DsJMo5L6<<7nOTAsHKMn1L6<;) zu5&UoGBGtbGDn@y1mAVGk9ldxq!LiNx`COlKzA7$7?@ZZnHv~e8k(5l***YXb#G>5 zW@&<dGl#Je?#{T0sh%-tt{r0)tEriurGbGl=-5JYOA7<k8}v-Tcb)BL&R3ts2TE5r z!RZRMH*O5NcK|fyYiVh20lE$fXZOzxbh;I&ze`|D!3cM6+{8@J)Y8(z$OK~~*VIDK z(A3bx*uu!z%n0p>SrhPOX9t))txMZL-nfP74MQ_CGXu~~X_f{irl2!%@Z}Ff3rizQ zQ%e&9Lx;u&T=HDl*DRP==oy$8nxfxcZ(?exXKHC|WB}?&o0u9~pf3G10nL&hWY+ZC zSOm%*x3Odo(9xI%M&^c=W+vd%UGaItzyLIuYeuNp#eLnGF{sZCzN-i$S(zE=nVVS} zg0i29Dd-kDl#VR;y0b&f@3+g=f#Ty1I6hEn575<I;FH>nK|>?>HbH>qrA*8X3<;f( zWNeIkp4=34bep+>fhoq&p_!qcrKN?Lp{2PcXq7B#e3%*vF>@Sd-frU#o_V^9B|box zaafug8Je0}7+9JZ;MqcM2I}CNnwpxL<KJCljQhSbV^c#tGtm5&g(3Q47&Bu%LrYW8 z-B)I2rl7O8P~!tMQGSHEg=-fhXcPH8@FsGU_%H@tylQM>Y-VW=n!Ca?bO^fF)Z7Ae zT^NDV${19|p=1w!Lo*9dEe*Q2$;{9gBX^jY=oy-sni?8gS{fM}Sel}a@qn*8JIZ`! zdDcSE=*WG{(Gk!wqo9+UO-xKcr$phaJ1mS$EKET~0{(58#>S>N$9O>3Hi7mlq95{P zVrHsmXk=*#+9z*jX@Gi%tO@wGvt!J6GPkFIYK{lsngb;&j0{aoz}sppLGfsbXJ3t( zg@LJsxsef}%g&6AagVBlZf!EQG&jLqZf|C$XJ~0?Y-(WvTFPRCdK|V1__nj-%p84} zu7LdU5bO_>n#0h-*uVmGsgEUSp4`wJ&p57`Iq3dJLt_HRfr1W5$5oS?f~H=LjSVpF zST->;*8?p|GBg1l;sCnI3pHziCdp4Q{}L5i3i8JzOn(@G<}i&wrv;dq8ySNtVVtvP zW}uCz#-K5LLU|nbEV-$fp1HY!g*nDSnkHrzdd5aZCKhI9#+IO>9n~M8arKkT)*VH= zK>m0P_6JJ3GO;wVG&cjCnr99=;S|r_Ycq2b3sZCOiU9mAL}T1Fxv9AxXx0()_Ei%z z@MVCY(<e<WK{srnmARmC^;69El0sWRRmT%-Rfn;eDd;GBOLGfDyjNbEnHyOen^{;| z5?Y#MVt_lBTj*JWwn<~ufaV5zpaYaG%|XX@m||oPP*r}K`TZ-dH6U+1#q@@;v8j=< zk)?$>=z2LrGdw3=fDXGbG%z$bBs9%|`?fP<Q}B79=Aar1Z5M|*=s-}={w5;>GXo1# z)NQih+s@7~YsFP3fl}2oaH>Md<)&sP=AaWO4L}zunV1^jYv-C-8kmC)ydW4IxChqF z4D}4aH?yHvfaXSersn3x#-@gbmY~a}Q2T-4>(0(H|GXRV6;uH}$E*MiEzAuJjX@<Z zXb!^y&s?UNnYkgT#5AxVPyvFsl%Z6B0<a3u%t+6`(AWZ_>M%Ff1NGj(t4l!FJ)>lC z@Lgx;m}~Cenh0thzQEQTF*P>;-JJ(olw<<h(uupM0yPuN3_yn|;?Lu_FFP|fGuATz zFT}){$}~68GXwPj%`8j}P0h{G>JIQ_XXlwa#q%;isp=&-RiTtshM-9x3(yi53(yKa ze089iv5|?HnYk&!%z^Vb7-LYo!xXd*2BSq{4(bIO8d(^FPE)i*pOOV%c6NbTdtOX5 z$RDr3{y@ncMxawyEiFJRTP;lujScZNNz4q5EJ4j5Qv#z4xGy_12Azp*YHo;SuNLS` zYy;4CW)slD2}`tG4qEVbkvVd*Hh7QhYb=G8kp*aC+Sn4buNstYai=R&OJmRuKr;f1 zrHyglmtt&Yu4iawW^8PPe(JA@IcO^*=u%$LF+mon=b4&-?@PJFZ07qj4pip8!Qu@I z3nNfUF|;%`H@Cpsv@$g}2CdDoG$XLy4flO1#%30JrsjsGpzCGO%3KQrJwqd7Lt_&Q z(4Jkib}sn7l*`Q72lK$^-oM36RmPU4MxgUij1A1qEX|GZEfX^{H8r+0GBYtIa2KGl z3C;`1jm<3eKsBv7M(zNe%ms>UBTFODWzptnWiF^Dzrq|)5FG@%LGK;(2E9q^K{x3A zSoUQhwqrnz42(h7Qk&@+Nnx1=1T}s@Cz=|f-Jl1$?+QF+hqnI@G>{FN2La1rP6L8B z$bjY0Cv*%zI}oA!^)QFyLHp;x+R#ShA;b7kZD^zM$TNg!vw$e`d6+}-h;4po^Ar&4 zaL)sRd=8$bz%maA@&ZH-Em*+rgw6|K*#d|(w}uujAYZ`eTd-^aM4U#5eG4FTh68;f z5bPe999rOj<zQ~b5jYS}qD^ywH9`$Vp9W+$&_hhRp#=_T)&w4^=o<i;jr2g%%3uqz zoB|4;r@=A@h%`ZnmTVw4Lj8zk4iIURAD+NLp8|xK3JU;ifdiWwL(5RCkPU!Po#<15 z;9!Ni70V1D(j*^R+5u~X8H$#vP~^};2SpAoSApeVjzJ3>NX~)z5iR9_rvJ>~NdSHS zA4DtET=e-rR7uRlgNQBk89-#$VmkvAp0cp+0fYt}`V1i0P?#LH;DO1Z1rJys)u#VI z7ekP6hn~5fp{bM%*8m*=3fg{$=KxTUG}`2!u@U5;RqO|Vf+aB~|4c!b?m?&LFem@O zvN&$gGXw88RK_>^$7Tpo1T`OH`p?u@&)9_E^dDH&12eX7pqA}>%r*$<)*Ul5(BU+o zja#7gT6mg-#wLa)mKK&~1hzonzV6J}+)&Td%*Y6|$P~RT1-X#i)Xdb>!~nFM7kMp` z8K@h6mHB?$2X@ey;Rh^ZhM=>>4NXkV%}k6<4J`2WG(gi2pmW;^t<p2az3&WkbCab7 z=)^d5Uzq5bn1b#LFf;=l)r7iV3w+zzHRi_u-Pb^|@ev#wDE%c9Q)5#@BhZQO<|gJA z#`uPBO)O1JjLZ#8%?ONq;=b+7*xW?Vz{CPHP>bFRw=f0mR51kIr)+L$WQMkX4t(9& zb!Jw!6!7txpTPb=?JpS_n_7Y{LIm#uw7@%_ZUP##G%z={Brw)yihHHHxv8F^rMU@c zMLc?ZfVLD^f^McVG_bTVL*0=AzVGY?vrmZ6B~VA>GiFBvw7<mE5_H$MiG`V^8NO6y zVhXyS+``<PQ0BmW^ozNfo{^!kC1_R*-5ch5=4Pg*rUqt)#wG@+cc+_xuRFWREE3UB zw3mUA;|r6}cJym9&CHCzvl~W6#>R$5CS0l*=llvo&iOSnF*Y$Vv>>p}*Vq(yC)^xV z@SB^Mo137Yiv&83(!dgYbQoxvIm(y___DKG%u_s16@tb@zG9AvfUYkvFf%hWFt9W- zH8L>AH_&DRzQDrRl)zz)#<*`gGd2euUt?roV1%)G4s;r&3FwYUGjlUzW6)d_a!F+l z>Vw~A_D?<h6qKgEVM$XaMh1pPmZla)pfw8?`1}Fd6b*_v0|GOcrnr}>n_KD`nwx^A z8qxR8fsUgzGBYzVGz1-)ihA>o3HY+JJIq2%|J*>{_>Sof@K6fquq^{)V>1JMha8$2 zn;Tn#=Flw&Wewb;=@y^^OARcIF;}Tu8tPeqrcOY+eT^+pk7P9g-*$GFxv;IE5tOWc zU?wXgP;Fym2s*0E($K=x0AG=747%dg#LUu=z*qwA+s=$FKnIqZm>HX3EP$~z(lfU- zGcvINZ4NaxHAU@&gReWg$2?;P&t8y6eqwsW5HuxeU}0`x1S+*n%<zqTf)-JmgKyo# zKW2#gx-(-7BRyktb2D>Gi~)5^V?FTYkjBQACI%K3Xe%zj_nqBm{^{A<464b0fopOp zE|#49;^HPoK?6MlBMWm2(Cnd+fjMZCF7D<CXs3s{v9S@M_1(B{J2SR0)-$#=GBm^z z9VU8~CdTGQ7DfgZrY44Hr_q70JA1(Fr=2DOs>y$YYe1Bm+}POM3^I&uW?=>z0mJPN zBTLYNcyluXhi!rOL*kk>voO&!v9K^PHOE-U13Hh=!~k@+mW8>Akr~<uF8I2$hs=fg zEQ%n1`~mv|wI&BOGE6|{5F3GF1>c@bGthbl15-0Y0*9-EPMW~!5mP-=12c0YjElld zEY0-{Of5j?i(7yS6V!D);0w<lF$WuatpycVe=&<ILrY80o;lD4bPLcqhj<oT7?~Ox z8-tcB5LoACW`c9J$-+#})X>7r5@UYf(n8O`+`!nt)X>1vzzDP@4Y~3F-*@(yxw}L4 z3@DfX!;;HQK!+z9gSMwzf==VWS6qQknl>~vH6w6nm@)1P&%hT?nHYdB=0tBHT3YIX zDq_&N1cnwS=(!wx<JlADRfhz!LFwv0wsd7-YG7e#Xkh@_V`yxSXAhv6k)eTsk)@d# zp)ImzxEH!vSm>D<n1Z?;sO!T_4Gi=QP0bBJcY~W7m|Ga3r7KWv{*?Ivr??g<T{SR+ zZXid=ABGm73}OJ9=P(A{HD-o;{iGRqJrd|HG6JP8?%LeaK+n*?%o22bENTnU)WA^B z%oKF=fr+^>=y+C?))n}wvuDiDE?NEtMMopE&~CIABIw9kb0c#T14~mA(9z3yvWKCW zg^8t^p@9jZ?18&Bw=~o<H8C_aGDdG)nHm^_l9f5A@C0ojN83UUzUk~ab7aBW`5=EZ zf&GCJ9Yz)=W=5dt4bavj3quQhv*U&)=4K|Kt4;~DuFP-`se>wQBU2M2^n7k=V4`Pa zZf;;~VhLK2WMF_gIS#()>;?1E{chhtm0&Y7#vSB_=Ac^#%*{ZzZWx*1tIG|I%*>6= zj0^}(aNxe@%oucY1?Ykgj4N184NUdSj19~{n?nr@Owf)11>bY_l36k%mmgGGwJ;0q zVdO%I4MWg5uSSNTipdOgcqYDORfeFe!9e>a3B(5Od(Mn4K_f0^W~La2^Ozc#=~;m0 zj6laM8XAMDN#tS|e9_q}W=*m6H$lm&6*E~Gn;RP#SQr?Yo0)?!-c_Im7AEE<mX>CO zrj>DDm11mZ2D;o6ls?fK?WUkpHH|@wCd>>?%}tF_=l{T0rMzbTzc6VhC_>sWBgDwS z0JK2W%+La~_sqx~U-mEn-41GKX-?o~Mq_i_{c=mt(W^$Fq8qLHFf{;mON=cI4a^M9 z!N=;Olvm)(Qr<9YA6aq)RP45ci(QoFl@Vx0&eYJ<0Mxm$G{IMUfI9!+9tfd?g}Y;J zX`yFsX>4j_VvHUih6Z}ZpwoISj158eEu-#)2Va-+mU-ExJa<sK>cC7_Mn;yP+7)!g zh#BaHczpB92H<npK{spSuRd_!mtt&bsb^tg1Ug0<!ykrvpw6Z-==^9iOJg*DfUZk< z$NbH5cL(Sqz)oh!MSvT?Gk^~kE?R_j2GG#bz}(Qn1p5pi=$dasb3=1uJp+`Dfbe5J z(IzaI4fNo91hJ0CLuc#ICIF#(Zord#Xmb^yF@Df!JXj8Gt^y(lH4^(=1y~!}SUhOz z48BDWb1WV-;{?`*Hc^3M8@5Rt=<q(t(|<61*a8JQ^MU06P^1Yy%wRDFc>+8&hCcfT zo@{`biWxBAIa-KD%#eZ4sTpDh4Pv$leHS3uMyMaL%>J3ePC&)B2N3QJjM+b9#1={P z**_N0AOzf0%)r4r{fC${LZAKvCsJt0Vc7v_hHxud=r9}T!MCs(VI~|SDH-U-IJC^f z3fce&pW{WJ{evV&sC%$a|G^|NvlL>d8u|u6RAbRH6)0rk-bCL42o4`;Jfm*_1g8O* zH_?IzGy!OV@FrRSL9B%O1j_^<ViP3#4nRmYhdKz$1R&z<P_*y?I~HammgEC>EBXW= zDD2=fnOL>}BC;%&Q$S6Osdfq|`1~4@<^YZ8bqc5$7f*UYsh$D!EYc=MRwM9kKHOUX zA@b<6fQFE*vDjw;!ID^J0U;;tg6zjO3upj}S1elq*$hGF&zKXu2+&Z^1bmV&$b17m z@CLzv)S~3nypkqHR?s2aW&~#e!K(ZpHyr`BL%OiELrhFS=O`M2Ze_MGG{HOZWME)m zU}<4uZcJdl#vJEjb<p)wmL|p)CKx9RnHqw2E1H^^8JU@yfv!qHZ5D!h<L{a8IEO3- z`J)@tABHC2E13;UO-zlAEln-(tYS5_G`BFf1RYXIpdX9-x-%04BRvB%(4_<DCnT8~ z8ta)Ef-W5}GXz}>j(UX<_`0(X%*E$xH9+0J9&q;$wRvl1W@2h=U}0=#02<W8({D1h zGzDEhVq|DW$QwAj<DhGsjLa;I%}vm!Y)nB{Sr}ScT3DD^SQ?t5wF*Hi)ju*ThF)9- z@<lJEFO1F242?neav7N#TbLN)jSOQm14C1DLjwX+1h{WI1KrwW42n_<Q?!XEQ$tfd zOJf5QLnBa-TB6R$g6}%}#Qb`9YZNF=^<ha<7KTP<mIj7K#+HVrpsfSA$3{#o4MD4Y z%?vFG^fho_b_Tk%$;8qEG(UvVMmN_p03FI|X<-aHSp{{10DRloXXel;r&EO(m^k{u zT_&W?IMbOwyz3ZP^b9~V44^xaOh6Zr8G*JZ;M@pkY5^LX1D)rJzsG_5&NI;6O{PYs zCZK(=XaiP;ppj6}kejK60qF28<eY8_zVhq~v%;78#h?!01h8*VbBK|lu>t7X1klY0 zc(-Mmg3kUjGB&dyaD%!r?kmqs49xXRjm^zL1q!-1EcFa5ER8{z5}KKS27HkQ7EHlc zo_%G$q!wcUTCP5k8Fc9<nl~&#$7vZ_7@L7kVa78VXlh|%X>M*w@CG_#+&7+q?rt(Q z0o@ISo<od4<BEo$zBK6gMU)(3Y5>}F_Ko?a18*?M6O%AKVPa+oy2sPN+|bO#$O7L` zuBnBQg@L)Hi2<QmatoYe>!5p^%nU&j^BA5m1Z_J5je!~&n;M~c0(3jdcjk8|cAWtg zR+F(5R+c8_mX^k#Lk2-TVN=}WxTY2cX2zgvH3{q+z<t@7iJ^fW=;S<8OVHjrj`*U| zypqh^)FwtjQzIiiL(ssBv55g_oi~~<KppWP%sJbBy#UShPhkel^rIYxZDeQ!+FN97 zW@K&*+Omdo*2&b|!o<|T!rYS3@DA>~&P+fzPnlX8n;K%o1ZXXf0chu(p)qJH2}+&- zRpLLHUrkAJ1ZC~1Sh6;FbvkJ9*4WU*#2C*Qm8rRzk(sdtXq1#d359b=-NevH&(zG) z(ir3VJX7%bpoXTV#uk?5pu6W#ODNEOvtP`!&dx{zd1D%;H;fI8P0fr<jEz9II)a9X z@x%q_Bt%ddKw!tU1@1cB&=@oWXkm$QIH0MKsh)v}fvKS}Xh7Q37^Nv<3clv-H}g#Q zR7H?Crek^ow9&u_G?8mzVs2(^j;|?VZfId{WC5DNCJ-Aqx0``ZhB7xbG_WwRK(GCb z%=C;6K%48$L5C-sqGb#VA!d$0%xib^34pTq49x5eTH9`DU<{f*1Krn)=a>sqGfOkj z70iTo@#DVa40LrC=n_D43-pZ-rbggf06{Zn=HQcZQPUJ?mD^wD%_{l|pvahsB{EDc zOw2)rl$i<SKug?d%FNuv6m-EEp^_H&6=$HEvy6=m%|Ro)Xtkb^g`R~4Xp@$)k*TGH z1!|fC-*NVjS^SE0F320RFuh@HW(Yb4+|1A%wBQZj+7VMwwP<W%X<$xZHx2G9&P)s~ zK(kHepfwk0-Y_=M1I-heSb&zeS(>1XrkjFqIQ!3B)S1B#s`qAN)_aC#MwXznNkJ2_ z=Afl1cwz%|qP`_)1Q&nSz<tA+iJ_&QxuKzng^@9r3>Q+J!Eb78sAptmY+woAYJ)O? zX$rpHtbwI6@>3%yF6Lmyg%Rj_L^Dv`Z)$F2fj57HPF^rGvNR^NI?NL1NV<uU0cblZ zmc2Bl#zuO^W}xM57N8X{s7u^T!IzsgvS@8)0iUQh7o5M5TDN)zM#dJPnNiR=t`-KC zW`<_C*SLYsvNQv&i69Uard&8yDVTt6%rdbsvM@(Khrra>SkK7P(h_vSjWPH<f8?qU ze6?8<OG$jkR8VBh14jm`FD%SK-ZugtENft5Zj7fDVrph=1X|KSU@?*<?ryk|k)8$U zAa?^yZ<y$r7@8Y{4xuptZPP?4rVK$fcr(kHh-EWDh3$OI$S?#YB~#FSl;)t7Czkjc zQ>G>c7T`0N3B(5O8r;ZO4|JHTv4I78JH*%&v>MkGbc_I~qmSwfPzBz?A{Ox!yn%lK zX2%cQmNK_6Hn%h}F#zq+!qf3HHMB4`2Avf{piO9ry9PHh(X#+;y0gHTWHL6>Gchy( zT^(*@X$D%fh?1y4-SAeH%3!yhphUG0OQJF}votobv@i!v8Cn?Qy8#!}J21B}0?msP zhz{IUxRDuXp^mAUsU=2qnCqE=Hb8^&hau`=%ch2)8oZ4q%>UU1kT({Ay@A?Q0$p)x z0NzV#X=-AEXXT5jiMg>MXiJ?b{<YC2xGzWnUAzJ6)EF9~pI~EZY@ufkI!nM5bY6pn z3CiIXriP#@yq#s+cZ+1uaKd8DRAmfWT?@K6*4)GpJWhotRhgI?m>Qax85rRoYBMn~ z#9dTb=z(SzO|baG5_E60si~=vnIY(cOO)IJz9OZArAR;$+!R@Y86C#vpskgr=9Wg5 z7MAA5_<F7;M&{<0pmTunXAaP&cAO<H=qd})ApjWBVFIdA3@j~-jEu}d7qX&y19b9B zCky+r?cShNwG@jtOiT?eEJ5ogEkRvZd}CB52Bx6%@C^to|1`mUK?>;N4I@JXbI|R# zXiX6lLp^iQ$`u0(Q_xa&)LI;TK}r{k{{I!vKohXbpcAm?z!R_+&YxL??Gi>KV`EFu z*|B;S=2BQLVKgx^1)WxGWC_|LiF^qoe4Z6;)`$hXWd*uTk<>X@=v*qc2@$9i+I$Fj zt^_J&s+U|)8eae#^G23Jn`mS<&;uR#2%cp{n`Q*f+Q8>~(PoMub3sts(B_H2wm~O* zNS=X(PWE8gfQdA%i5V#HxgIS0FA?*Iq|U&?C)f<pf(GnGm{T!>1~ILPJ_E~wd_g6a zDOmW4pID|~5p!1PQ?M*XdX{jvqR+vC-3pBk^c|Ssi9)D9upGjQn9)O@fd%;kG)V)V zpT;r;iwJY{9hhL}z^p_|Igs6%u*pfZ+{9{VV4w$|_r^8{3r_@C=3v27N?_MwIfNAv zUs&c~5$O*76jrcTpdpK83KqW8nA9m)M6hGqg9#6IY*VnH{0jCZ`V=g(Td~Z*8o?&% zv2DSGCoPh<U_#>=%LFVUKCn!{8c=Tn*2GlL!icm9*a19)6*TQ4g?j=PJS`)IHUVp7 zpa%|2tP`*hNsI|t6Ql`J%n4YqERJoM#s;A9B(Mz=q6pVEOcT&dpOgxh6li)DVLSRX zElAbR7pa+`X2^1IGX%Bc2f7%|(9qb}!V<K)7T;Zrrp6XVh8E_Q=Ej7YQ@F>_K_dpB z(O-<NhKZ4$1!#)M+|by>5_D=Ba#sU<!C5!Ut{W9SpvLVAER9>x!H#BT=EjyrCYDA< zmiU@e#-^4=mX=0@wmpE>$m41ig3h+JFb190g+5wnVxngNngjqXK?C0~gW?a+FnSNm z))f!DK>k>X=?`!(!`#9Qbh?$9v4JsOe;At?n;Ki18R4JvGr@hq8R+^iQ*%>OLqm-5 zLeO0zM&^b_rltmlW}p*LQTzewi1)JmtoCpQC973fk`-vg)4&9Dn~0IQr5V0`n5M>t zprfn|EC}3CV`5;AYukf~v5B6kDQLYfMs%3z85$UyTUr>J8X6dyp$@befqLS7EF~%P zML^zI4fY0V*U#7pG@5B<Zed_*Y+;ILwWlfQN_b0SGeaXnT|e9%anPuNF)00F<_<GG zOA8Z212fQQo|z%a46LaUs3YFbviPdq6i}*KgPE#~jX=YtM&^cQ7KX+Kpgj|~2MmqO z%ni*gOw9;v{WCGZ-4O>38-NA{4Ke*;u4idxXk=n)WN85oPn1*z>WNQa(RA-M0!7DK z%;+#N1l<{7Y7CnCF)_opSj5!G#KgeB%+iR!Vi6NVoHwGF7@O;vn;To2nPGavQqR~3 zbYiEmsfDQl>XB!r;M>h6vaqcAU<UHWI!tdES{N9c7#Uj_n}P1X!M7IL)X2!d+#GbW z7=b*F`*JhT6=t9f$flO)hlQD%f;v{9@*H$(l%WyIDhpHa<z|yuR?H4D0}ZyV2M@NP zWDa99V@or0P@I?>n1PPA!abi4>RE#JP!bqUz<sxwiHQMdW0Ro)=E@yY&{`Nv(8vgA zowO;+PHR)}-DZ<n0&gET2SvsPaAcrXfaaiyY0x>Ch6Waf#-{k@nG8W!*@3QY#J^a? z#LyV$u!xDFo~fxJ=%i!xK`K*YP*G)UU=EtnM_nvp3clKG3X85!_H2+hHe!0i&>Xbo z!_XLfl)0Ia5xxOjLsJ9L)nf#9HG$U6;Hv*jjPy(mL4)QP^@gd59_Ro$BXd(DOH(6L z)Cn5!#b#4kcK>;{4pdTY!Yrvw%nU6J%uEa|K$pfEnBy&R4UNn}L*8Zt&O0-~eY2Sf z=$w4e?PZt)(Wa()24)79#wO+#Mg~R}s1*nJX0vH5DQ6~u&pX=;jt-Q(0ooL7X#%=k z%E;8r%mmN=eN#~VWC0p{Cs1)1;vP>oG0_8!$(v$ajA?3WrU%(5W@cnyY+{C%#X;5h zbe3x7?WLgT*n$}yhGr(_rl#NqlaYZjX#YR%iUYJw#mLaWg23q(Cb+LQ16^Qd3OZlg z82w5xQ&V$2LlYy=rX&MPBT!2Kx#9rdY&L_1)9m<0Q0~}@86BVk&J=Xj0BBp3i3z?| zl>uk~*$i|NB;J8&6GPnfxQQ9)7EdEf6HISd=ox|5bXh=;14J1!GzQh<Gg<ysMqLJZ zV;dH4SQ=Sani(5{?hXZAErw?V*TC4w5_H)Bq2`Do?rPk`LJxf0q!Gqi5mQUhwb3S) zW}q#5mZ+CQn;L_v@mVZyX3XCT^2T<sH&BXPP`lN{z#KI9XJl?}h;Nsfseyr|p}7TU z=MnzsFv58PE9l}cV<XVIQS`>4nSq`K=>A%BLt}FzP?3p}s6YeivsuIpKB<Ddu>;c^ zMn(oEph;*`3s6Z1(vLH9m{?kXRw5c35||VRt=7PCn-=)yFVN*^7z5FuBgl;mjX)h5 z6Eh=o)Oi8$#b$F@BHd#TfvWMHnANzsk%57^rMa1jxsfsGbXDAm3bgyu)Y#aJV2=a$ z#bzd^hI%HTlM6AHS(q8=S(=-en;Kf0SQ;A|pjPAHi_PY;=)~A*f+AxVmdLQQv@|vW z?XWg9F){@$-oe=#F|jlTE#EOAaQ(Z95$;;t)JV?+v_H`TV*=C6M9;v`1k|ttorI2h zn1U(zX0v%LrT&i}g9_Z;m<2AV-ZZl?H!wD{v@|p{#Mh5Cu`~olg{dWh(=AMJUyEV_ zI)WT@TckNg6W7dC&%oRgRK=TF8XFm-B`VOOw)re7X}=vn{@8=*4?{C^P<3NyWCB_; zYHEgOf0>B|=wK%!Lkmm%3yDE{sByJNOilDa3(5>I?#nYZGt)CRF*Y@{FtIc>HMK<Z z2dF>3faUZtS4L2>+6zursP(v+xsj=*8R*bY12fP*RNPq{d`f|-p`|H-(Geru^|+}i z=mZNB(8YjgvovPrdL|Zz2B7AVrMV^QwGXD?TTvFWh+TOr0E&)%SfaxMv?R<Fbc4JR z=#YOr9a$65f@xzzGeYaSL4koYI?VJeOw0_8FwS2!1sy?dX>M+8W(vxMs0V(Uf-gl` z#M1QgGy^C)_JgAXrRD&&08Bw+P{yEZmCf<h93~cq=0+xlCZ>djM{r+?VgfpY+yu1F z9;4>4)H4R%(QRf4I=9FGwRH%-6J;^W4xcOFlhhAjMu)KhXtd4L(89pf(9i_$_12(U zcP%YV%nb;v3NyidDGKP)5JN-Ix=W0z!`wg*JZNTNWN2axng&I#0l}A|EMd_)cq9xI z9S1R^12j-zVglN`Z*FX0ZefToS(%%Gj->z{5rDrUH^yC&n;GbV?yR)Hs5{IJ^(+hx z3=E76EG$e-%uqWW;7d`KvOHq?Bfo>4k>e1v)h5t&l5fCsm@{^L#Xg5=3c5ws+!(Ye z2g@9$siCQ{C1?i(=-w`FF6QKd(k4b`13f&uNZ~g>qRn73gN_S@PHv*@mjulY!nI*e z))~QWeng+aG}5z#Nny@lf;NePrzz29Fj+u@0a8$hpv}{v9D|EFPiF$(dx|y@#f-F1 z5X%%Me3lN&U6O|IDH!xQOt7KQ84+x|Na52g=yRCN272&GAM`0ql!-X>BV-}-Y0w!e zEOVF$8_~iBd0r6P6eip`=u?=GIb*0NvCLr_BXnY>854vgTB1Sm2$o4q`1BQ)Nlfr5 z!r(bE^hr!`gg`?FeGU_xCt&_S3ms6ZLO2yI>44I{F}{7ImT;|D<}eYd2Yn6`93@c4 zqEBIhvm(^7SY|Mhu8Ks<Rv^bBoP(LMkS0bka~5O|ANamZv;bl?veZLt!bP9N1TQ&& zx)#eECgPxF^f^qF#DzYI2}vR_V=>bYc#aI54A5sWQH{k6A;b<{Ec2L%NqH>unC8@* z$22n5v$VvR$CTj`1Wlkpw{Yqe6&L$DH8HXoSsI(`nb7GhSuFcVK^KJJnZ`5%%L{RF zf+heB^wL3f5Q~wy9{4bGkQm5MkZU24<b=7nKyt9FB3VpKA*%sEf(Q+edn93!Soe?` z8t56A652xwQG{y>)7VVUjPM>(u&OTM#5hpn_Aq8^%E-{d*xb;<$Qabu04?Oj(}M-w zE@upC6yjgiZG!twGZQmIJ#!O7GfNYUzMna04X!b0g2mXx!V+!61Ncg_Wh}>=7wiMA z>OKNq)s5P?1#NS%Gz8sHXJ}+@ZeosmC9#RQp{1pv34xPKO^k8ggJNQ4qzAgq!3eWS zXrgCgWNB_}W(YpJ1a-s^e4*KLmgC#_&Vf8}6zmC<4wJEok*R?x=q7nf0}D%hizQ9W zK&vSYEzAflGBh^EIqzp?tY>LrW?^B3KA3K9st3AU+|taz)YJ@ZFu@eGuWSX&qq_FB zAWs~_^aMzcg}I@Tp)qJPgNZ4gh%f`4d1XXkFO!Ke?uF@~%f3vFLAyNBI~nF?dgcb8 z9m&Q<hUS(=C?`3Yf-f^$$?`S(#bnU9&T-6f9b;o7&_KEw_{u3G154a1x=lbARTzPm z0264M<6f8!y6elt$k@ajV?(mJxt^J&F=%1DkpU=gpbU9}FEd-kVm3?eC8&#W0^G$w zNl)PWzbuW+Ks)_RK!;P}?tq&a8Jbxb8(10==z!zC%nWqZm$9*dnI-1-ICId(6VSkw ziG`&l=;}G-o)Y*jv(+pYi*IcPdE+D&Z-DNWHM6v|FgLL<2c2Ds+Z(2qW|kJlpncc` zVgvWWbWktb!omzRY=btAU~Z`gx@8b_f~Em@lnliip!x7MEEm+p9YICyDa@kQ5OnjU zv5BFju^DK-8{ctMCZ?b<RdX{_LaRlLaSx=MS?ZaXn3|ent|7KC(6h8OH?%M{GBz+W zMcp87Y6==iU&~ThbxRtQH%?>b4I?8117mYzBT$k7jnm=D8>S|pNk0PuS5BGWzRAqQ z+&~YsY}^oYI^4oY&%n~u(#X`<*bvl1N6j0carAX8mQf1LphR^BoTyML4A5nD24<iQ zc1C6f#zsc?y5FWoMy4j<ThH*PD%>}jnShQ^w=gg=!k9<4FxCTIy$4$AZ){<NdK-<Y zsihDz$9k3u(N!IwM0FN3Q5l(o?tn2c1RWq~W?*K3=g>J5&<%7(28M*T>zm-d$;`yu zNYBg=bSO8*+@%HR`bhAi7jqK>1GGd1zR7F@i>>gT0#Kql2ToL|(P3z53M!~gjV%n# z%nVHM>;y6~F*h;;WkLdxf%8UE6LVwGv5O|4#XV?Q+`?23bZ(`oiJ7sPfq@}vwE@1z zY$J>HoqsZ*M0FmVs89-Ab3-F@12aoA&^B1mInj6;Qzj<np!p9Y69SDX6Wjyo<|cZk z;6?Blb4(Uypcy|C3lkI2HUiX}noPkrnQda(xFHt2#^M6l8z_-sWNKz%ZenZ*x)I9~ zw4DJ@7B?{h&FLE(5Llgn`yw+Fb5lLg8hRsBOmCQjj=?rH2F+@ini-%DO@Z$*+stx) z{Uq=ypBFK`0h)dVw^>0qFPmBz<I5Yymgb;C{0#^k=WAku^GZ?^b2B{?OLI%iR-uIj z=m-eVOt6KeIr;)5@HJ*zSkl(Li3T;OE@3vPKuat@TZBPNEI?<e<4IJ;=0>0y9795z z9ZWz+cyh&qwyzhLB!X_ehh2_mVh-BtYJfSXVPUCfXk=t;Vq#!uZeWDAdDILv8NQX} z<aKT?P&suOOF3m=49eO@=0@NN1q(bIflQ1|%q&0)IS5>mV1oM+GtgCK7DkqahM0rs zmIivp76#@<W~Sz*pbNlIstxcZX4_cwYWV6wIs6J{nlc2Pa0A*=Vgj1$HZU~7lQoP% zHxrv06FAQvbonc;xd00TJwtON&@>8q`_|G>&)moadb%^H0!40%fG;uI&XVB9sRt@< zuVNOrhNi|Qpo{yAOh6~$TA1P4u5V&wX$IPtWlZ4cSQFfrn3-4@>X{l?m>6MnH7t!m zD@6>9O)X7~EiF*@&zOPg@Et62UtVj2d~prz3zXs(oDwZfP0dX}%k#|fEEEA9_iJtf zS{_57eQSz)1l__&4>VVexroZrM9&m-1E-~>g`t^+C7LflRrpSpr&m%eKuPL4W|A^7 zH8lX;{Rz6=#K6qh6wd++6VU2EQv)MQWBmI^O>p0WVq#&UXKY|#WR6jTTbk-wm>ODG zSQ>)P>o!JRCkeg<Wfx0oM{5<x8#ln-K#2?^W6+^Tpk1NnhGqtq_zGLlPFVvZ(5c1v zt8m=6pqN;g>RFnb8kt#QOuky0>zNvvfi}8>4n9B|NC01gvYSPA(xpO>H*SKxfmZh! zS(sRYrtpkREDbD7@a%#GUAk%j+C@iT?iKePC?*!>dWN8WHs%2kpwmlDK&R1z&IGYA zLrqlRJ5ctp+`hZj094-I!cyKEnShSJwFI54Y++=8w_ON28yb`Y2{qGAad*TmKpPg# zOe`!h#&tlaml|4t)@fN97+Ij6eQOH71Z6KvNbd^ps@2=z=s-zT;6-_smX;<ahQ=1A zM);<}4MC*<=rkAtYr$||gJNO<nwm7QG%!GKrkfcU=vjg`-<cR%7=qk{Qf+|mLD|Pr zsBY`Not=^64ztxp&@5Tk2GC`T50=kejCH4<nT5Hju?1+k6SmtH%?!*fEKH5f%+StS z1x@XMr=ZZbCZSA0p-q#4Mwj8!OlWf+%m#Y!SuHFh)}ZMbuyttjWGu#dhVbb%wDD@_ zJ|D0)EaUlbZD_;!$Sy$}%m>X8z&(IA*#Wf;Jgkmoo(#TQ3(GtiVrl_>o(y$L3o~30 z+oRAY${=A4oddu=QwE(uL7yo@@d#$vz_)UtAGeA;^MYlf3^8?pWugpej~rT>fyM?n zSkd?TA-j~st$y(6z?dZitwe^+S)tF8v4VPR@JS-{c``_3K|>YmUO$)|wxk1%Dr5Bg zWCS_{877GqI3OGG?(_p?8*tEJnI?lrB>FTNI9OpeqU9-68?ojpm`=2$1JVgTi4yxP znT4Jyd@31zmJFm7?i2KBGGy0cnI%IU9gIFphN2NOYax;(`Xm`xBQz?}4_gJxK|=t` z6d97CXu$*4NUiG@jX@`HV9b!oVx1vlhs=--;7&ht$R=|U)Y+@t)ZF}{$|gouL$Eyh z6q$)0DE(sF=*MCNlB422KT~5pb4x;#WDrHTCdo`ehwKpC=Lc3*&y*$zY7^cCH$qU_ zgocKoV<QaA3{8#A4UEi<@r@N4f@ZfsO<_VE4V>4Wm{=O<fo|o&SdeaJV5DbgZeea= z0BRdpn4_Mi1-`><KTDAJ2Jo8Odth&%wxvMRUWTTiQ+EuE%?<G!{$OGNT0m)JY)t4Z z4%~N`nOK7EHZe5>&Ap%wvY8ne>lqoCSr~vWeK14s^?~m&JHXQP?jQrGX?q{DX$!iA z2Q;H$XkuVy4my?r&wz-5nW>SH3Fsa@0zD1f<LIE<LM)6y%XiWG;ARFUdZ5#^3=IrH zEja_UCOT*w{UA%Abd?s!9}h77VFbFI!psu1UD3qQzy#lQ2qp%`mPQr^ppB*k{DFH# zx+N$#fu>K;huO>wO!bUSz{fj+1_g}K`~m8PA7Uw;!94}k3x9~&3pW96@G~;8G_wR< z^Jj`@50Hrg=sY`1&`oOiy<vvC7j6l<;>*y`2z{>1%m6g}2D%K#(9{HULmp}i9n=dy z%(6xzSOpXtkFdmsxw(;nxuvC<nI&k}58v@-ptHA(z_TC(I)1qCFf#$&@MU2H8o0nn zRpxqTpjEeK=EmlR#%SyDz*m?ZVfiYq_#ISMJqBlTl(Ndm*bKDS*woy_#L~jd6yGLT z(8Qvlfw`rr1%VB6X1J%qK^J^kn1kjm&@;J(o|&<Qg*m8~Z)%8^sK7Uv9c8&zJm)9K z8&AOAKrO3GEltc!%#AHUXQY{$<LUPqgN{i8%|{X1J7b1>B;C?N50s0|EHP7+r5-2{ zEkJX2Mn-0+OQ69Qm>pyJHSyOAP^x;0nW~Hp%|Qi_v6-=jfw6@dz9DF1&``di0qC$e z0+|DMHym`o7x<1D^lrEr`0P?+LkmkYOVHRS>cj^42D9TVl66-ufc)_c(;r3#1_q#W zm<>R;SQ(h$J8;g}!otYJ$jsP~P~Cz11~c&eUIvB+M#dOrl_98B0ZspyU>R!zUto5E zMLFWnSx~ZijwM-{S%S9Cg0|3tmVn@?0zt|QKu3ES5!kP2hI2_e=z1>`Lt`V*O}c2g z!_Y|25;R<5Vq|GzZj3gXZUGuiKgsfJMl>5JI$mH#hlv5G`~lrXYHna|49Z<Nr^Jmd zj4aK-y95Xf8Jgjo5;rvf&H7myfb2o{hl!q{xdCX2Kj<u06VwGS;0w%7vCP<)9|4Mv zmsp|$l$<Oq4J{3gO^uC>@J5G$v5_(O{xJf%17}SRx~9w$RN7%2@M&gfs%L6!Xat%K zHv!FVpwu1U`^!$VL<wEr4~mXgn9*Sf+AwWsX=!O@Y;Iy<Vv1+%6EtsW4mw=cm{6IE zvnB`K?*%$A-w<O1jhUgDo~0>h!@9W{=s+se2{Q{&O@4-DeamYnP;|ToM+a)%0Xh%Q z*uVsocR?#0@cP5lz|a(Q4K;!6VUDvZ2i@;wZe(I<g1#i(%+Ny5$lT1-40NfgiMb_O zssdHzXIbVfN;3p`;|-=a3{5NyjZ7^JKxZi%Sb*jgapw+mBV$w09Z@EPykUrI9Tn(y zFVG>Dm}7>9pt=Jz$7E@41_~{dR0Y1i>>SIqlQu@6RP`1!RT+U!m9zlOC4)~!Fv2rs zW(=Bh2JJN^v||zX^<|*Ty-bV@O^uDvH(r_<8R&sVxlPP04NXmq(Y7UnuP-~#V*J<t zH7GjXVTlf76VULlnX!e5g{g_LA-=lY%-q1x(89vp4F8$Rpffgc%$b=Q8t9prnj4y% zqn~7GW@MxXI-c9o5OlHu+DV4s%gZjXOuruvzTEFUxS5M`NVl<pIcP_gp^>E-sKmqF z=`c1kF*Y_bwJ<a#kj2e$R^+CjYR<yK*buX*GBVaPGPbldHUjlU%`H&-fZ)5!F0y!T zJTd_k86UurfzqxrvNQ!PP%tqA-DC<n`5t%HFavF1HZwFQbhHTWtII$agMe0J85yIm zlr%Fk(E~LUj6wS*EsfC@8Crt2mR(}eoWZynG$;NMb50y|uQ=$odeCB0BMU=3t38cD zJ4``~((qRsxbHmy-3nrEVhB1+0==njWU6OmX=Gt+Vs2^ynoUN{;GkOkGRxZ71%E*q z{1avdH#D~}u>jrD3%dW=#Ml5|#xONAG6N+*LL208-+KbO76f!ZiwVY2rDjHEdPWB3 zW@eyOz?K+k3be583d_@3@5Mm=_>9dT2Bx4x-wjNS%#1+wC!V}vYHVr>n%p-fuwKL* zcQtNks%K_yWN3(Sw1}CJxt@^`Xxhuz$kfadJ#T<I<X2hFAJc6G<&7_xdBf1c$jsEh z40Mn=XyF{5IdNlC(20+r6D<f;8@Ow6L(o1y&`c;s8`sD}&)Cw~!qCvf%*5CLZQCXI z>XU0MOBQ#7FR}iL868H(MkWSEW}y2B%q>CJ(cp;=6ARGgordOwj<djh^@%BXn9vxs zp%x>1Sn7eM%nVG8jg5`bkAVPReR7>e>*?;Lpy>Dpjt;ceh_Q*Ksfnc#=)@Y(Xc0bt zn1Uwv4Gb*_#D@j$YTVF54|HO=DMr`H*g((3#0WHCW@Kq;VTsapG6Uava)U+wLM0Q( z8{fg+Kq+wzK{u)!8=Dw|uJN=m#xr(kYyvtd-^9qmkdQBME^RY4wA8aOGcqy2xb)J@ z*ig^J(8R#d!r0Qt)C~2e4KwhaCpTGam)C0SW@qI1!ECh^G=sSUJcBu5;>pEWFN?G= z249q`XMydgQZq|X@7=)62y`?Ykw=wUz-KoxCtQr-a%eM{pj|g`IV|%Da5?lTOd~xD z(CmgFXkrA*bPHS`=4^`*Tn=qE0Wwhu-3W*|iD^LhNlcIj!4pyFyZylP9?%IBEOVHM z9c$=wm|%_2Sr{r#VZ!f3M4!TB2JP{LI+WBIOvIi%%rt|T{6(L_1WkJ(CL7UH4QNRg z?4(MJNlXLKxx6xv3mh>fF;NZ=#WIPBwD%B8(m}WgZ59*7xfs)!;KN>_!G~qDA7bwq z`er|nv4}ZNtoaINEWRK@Kd=;*TfvEv#1l(F*AhbXp@k3V(ntd{Sgc@~#zflCXMlPx zF^YT8=P{8d!LdwZ!Y59#pI8bF9`tEUNWemK5SDpNc%sEJkBL}!fMu&6@pne5aEXJq ztHJi{C6*;-<|HQNq=I(tae#K#gN~XcX&%!QG{r28Y$*KXXBI;}Q)4MPE>X}tBkZb2 z$DEw}<iwKHlqN<N3nM*aDK#!xkUYqQ)Z$|Jm5><fMA5H|WC7hIASKI%V;U18jdotC zF*u(}b77mtWQ9m#+3E+57*t0hw)%l2v2OJ<G1N04IEx8UgliVl#9Yt7nBXiXSk+69 z$yY(m^q-jRLPHbKTodT#5MxVYLsJucqix2Pp!10c&kR`L98)(1T^a%!eKAH~XlMqy zG{n@>!pz*%+{oO*1ZAP28TjI|TPzD@=2U<hRKLItD%5tNiHWJPiG{h5iMf%Hg_#ka z2`6LF*+dq`p!4|gcmHtTTxM!ys0SMT$2d5_%-C4Z*uvb>z{tSJ(8Rz3Wt7Uy0CdXB zZI&mSY`=r1&3=Q&6HwZP#%2b_md2K#8!rtlOil20{)|mbK%r$yXv?An&c*4bM#i8W z0p^%PhQ=m(W}vGw3=ND-&CQL_d;#i+-(fkfXYL6~RDUoNm63&sfjQ{*HcQYYi>9V{ zy<uo>Y-tL*f`ve2;2u#oGSM@!FafOxMDJ`Eo9P)quA(tBF*Y?tnZz_R0QJT1vYh?W z3qFtWFP7K<?OFjZ{4_SjzZ=Nd$imXX%*?{bkihVc1?~ZLBU3$4hu+-67;W#RnX$Q^ zp`nS9CFq1p&<RFJ%eu`BKt1t$EPdbCdx5gXKP*|p(%8hn%+$iz7_@>Obm<VzgPcJ7 zw~Q<dP0b1U0(VE;$V|`N(89z5OQHe|;DRP_%s~kpby~m-e0$k_mWLlS0zuyR5B3I1 z)-W_P1RV)$3R<UZYH5mRUAM83v5A?nrMU^A@dOLp9dRRbJxkC|7bEng#Ae2pdZs4E zMrLN98(b_<C;!Y0EQFXj9<X#>k~jy-8x1T%yBWDq3MxY*(AHElGeb+z#Jz<jz5!e# z12fRIwgmUl;J&}i)W}lL$kNcl!T@7H0d(7j322Jn#LyId4X&91XgvKPi|L_7_8@;W zV*10#&;-<%1D!QxYH4hU?<yK&Lvu?*3o~P50|MKca9?0%Y79D8$I<{aD~2}PWMZUe zWMp7wYGh#uI^`K<dczESf!QM#xm}vxpc1!<MQA4@7fP}+GB5|-S_--j#KOcB?>Mxf zsiCns=x`wdxdZnFW}vIF3@nU5n?BL=xQVfznX$3CnVE^9kvZzjxEc8Vvd1i(*B`tF z#YQt`Y=ADrH8uog5ffu`BQr~U)t{k}v8jQXsku3U;dI;=n1SxbGByVd9AM-Q6B9j4 zBU5uz6VRr80|V4?5%3jePgo{gZ`uIzM+>GuK$jm|fVRpTSy&jD8{pf5Vr*b(YHDF< zVMJ&PiY4w5bz>7fV{_0sub8<5bZ{8xXh;(yBXe`qGjPqocbGk8S(9Sj1}dytS%h|> zr7B}fa|2^b3j+fS3((~)_~y(E%*@RU3`{Ht-1=-{iF2>Gsj;b^sgbF%nF+>-I;i;v zx<1Lm$iU3Z*aWo#1YctIjAeeWH7_W0v|-5{pwk=;jSRqz05e0p-Y~W_H8V0bGbXUm z-V)~$H&f6l*A}4WA9^)zVxebXY;J5~Xb3tV3v~$B419;#a~8eMJ%>PvsvR>?fhup% zsqUtr)2q$Q@y^78mRguu7?={8YqG>$kAsdlF*UOU*@IqGS%T)8KywcUW`-t~C?_(S z8G<VE7c9QP;)_AC(Sap4Kv(iwni?3HfHt`pn&aMO209Gf*wD<<jKF}pCGL9M*h0_D z1T>$7ku^*W^b9Rc3{64fhNgy=Xaz24K>a1lqKn$ALB8k&`vPUk478ca)WFin(gbvR z0iGmfWN8Xo)n{a3LC6=lt8rsXJ#%BwL<C0804?tX9nuE6Gs_%wsWoz=3VemxE0*hZ z=kJ2jR2OENGPE=`2OSY=0NUwlX^L-Un31KC8R&*yBLb}|Q`~o$nSv^73u9wrj2-W0 zpo23(wK!<+9_XqD<mo0e@EvBaS-QPG9Rd|p-IxUxXsf@aIcWWhu_0({6z<`4Pz%@8 z2y~D%{za^&xUVoXH8IjNFg7-}#JFwI%+y#9bn?5Qp*g57H%HAH;494Du(%3XJO)Ka z4`y^28CaNt8n4EdCT3=4X84vO8G#OeH!(9eC2(4)sR8Z*brWMf19JmI6O0{NW~L^3 zW=4kQX2wRKmD~oXJtrg39cFJ?@{*K_K+(|)jt<n;A!up_v|-rN*v!NNbPztysaPWm z6GPC}a$^GZxTyio(_T!$cWam!U`{BTnu4Ok%o2R1Iq0Yp<lF(i!|WXkyYF6bs_FxK z1Eo=AVg@>&!OYYYG`nwr??yQz3qxZgBO^m&0?Q3ScTeM*+y~vPVGOzz60@i>(=)R$ zH8(XhF}5%SU9f=S4N!0VJxkfLo10fLFmd!_dc(-n$k@mdv|HQ~wCD>@mjg6pVFo() z-UNT6%G3aNEpB3_2U>OlN_S}WhN-!prGY8vN_G=NbIWh{c5D-4U_ssaZe|4Pm49HF zJ?sB5(De8O7K{t(4b8#rR})jvfh?eM8+Xz&HwDcr8(I*kKTHj9ZW%W<G1oHz-8+L` zmz#p>Km+jBJ<zp-C<lF-8G*XwA6ZgzKU#w_$V70IpkxqGMmGShVl^-T%`W1*vBJpQ z2y`){g|RWAIKf?)n^@?X8i5vCo1(YZ%|N#snVNy7u0aR#q7=K}YfwJ1=m?dA7l%#4 zEU%0Wj10}pAvJ@sp&7noUyRHwEkFwtEeSLbO$~5Y<|dYUCZ?ceo)|gA%uvt3(7@CJ zbV)tv1PxSwfGYFPEMd<IFRx{1<e1E2wH!17cnmxN*s$jd_6a~s@RDz1JrisbfS{p0 za|2V*hI?ZvRXiikoZt~>Q#~^il7^hkED4-0$IHc%l3ASH#K>Y~sb?ug<Q$|qd~OeO z4iYhchc=%CK2H!j?T2Nm1U~JDHd6vVRTHWWeFoA9bbKmQ4s!+)d`KgB<`Q!T(im<X z+B69>=txnzUYLlOWJ8~SM41IapMXT3ccJS1BXmjzeG4UM5(qxmg+2iZo6`l)JfY7( zf@edareZm36dX+ujhHD0w2=xThn8ee3`I*aDB*@a{|F8@T+@%Bo!E#;M9gG^*ds^s z9!ltB7W(8P*dH)CwA=)ig9aS-sYjSbY=HxlLkk=fL(wx7cqSC45iLidXv7Q}L&RyS zXjuw8^9T=BEHjTt`ydTaXCA?JLfwO9;t{@67JcFoB?X|*Jc12{1}mu(kMQ(}KJf@n zRxp>Mg$~$4T>B?!H|b|+sb_*`(hn?+zI73FSf>=$IX@O7kQ|mNKNHZLGOj5<kR;YA zKQjY8OG82%7a@vpP5GG`gRVy;bU`6lmACBCC!i+O6mSy?rEzX(2s*po!VI(|$jkz7 zSINxG($dJl*xUqv58M>@)n(u-u?!6ijWHJ(f))XpfwsaJgT}&5Q5LP58G#1Uzp!*0 zb+LlFd{Z%-P==rpOcQf6L-3JQpu@p%w`a{v48coV&G8RFo8rE^%+%CS&&<Nu!psa~ zDVP~(@vW(e1$fHK4E3HVGw|JIUs<jwz4!-;j%k?D0lJ*P!qnW{!pO)3bj<~x9ysU% z00U!Fa{^}|nc}{?%+%CK&(g@m)C_YIjTz{6O*2Dta}!fzOVIjz<h~O4?y_$z)3!~T z5Aw!zus2W|=7uIFW~Qcw7Dkq)=4K|A_!g#vj+_UbuV+ADNt>x5&Mju9rY3qu1}27B zykV+m4m$h?v@z1u$QX418hm-#cb48+igQ8Um;v?%O6CCFglA-CZf<U7WNKhxjIYaQ z3ffX=06K#N@64sCA@1pLNH^Qq7)zou*E2LWvor<m<N*ypqqNJxmzVuu*?07S4=8iY z#LOH<mX-#f_3jpimX=1AhWKN{$kfOHG`CNnn`DT49NiRjV2O#jp()0$4KwilOvXl* zpd0$kP&Y1`fp0JS$x_=q37pAiVey9nX!`-^I(Rcf19Jl-e8Yt%mZ0_PmS*Mz3M<^V zmw_(DGPkfaG&9E7@@HnLXKZ2sN*BhU)P*`e1-`xP7t7DHhs;3nF&m3NEJ4>Z8d{iw zF5&^5Q-~**o0yqd8iDpc;U7si#eIF5si}pY1?bjE%+=8526`r->pl#OO$<yhvInU9 z{hMV$Wz7%J;O!jn;4Mn_Fa=#iZ)Rv=Vs2<=WMqP8VjpzWkeQ{ap(%k451=VG92Yd1 znu5+&1>G5kK8Rp$2s%~I9JKb`!qmtFbqE@KdD$P9mQUF`K)#p@_615=Wn>7tL(ak! zv>@CRG)aSJB;CZo!o(1?ew;ui$KCk`b+Jv2%?-`X(8mx!2WNs7LK~WarchC~k(z<; zF8j-}>L^nasHmEUrKmD8Ftso<F$A5yZD3}KXCm3i*xb^<+}OZ?!0t;^+;^9mni=UC z8k%7_$<PdR42zkCiGi7siG_is5t=tZ_4q%Q=L#a=`foni8z_-sXlh|;VhTQ1($Exi zeJ7sC0PVOpH#acFzZBZk2<H`~re?-^2B3>fjWMcm@WGj;pbF3&wA~iX8=(2{|14Ma zROW!v)B<ptLdhA1Mxa4-Q*+SS1{R?EhH$q=jExM8j6ieE_~(&Ljc~6^H!}ep5NnCK zg$8tPriHPoiJ5_!nURGF>hK!)>aqsb-#)WbLB3cB_62HWn1eQ;8i2No8-Nys<C|kL zvNSLU-P%H++AzXBjBaMC2U@COWMYVsGtBhNLB}my7=qUMqxk|fir&bo;JZQ=RN5}W zQra4t8-WhrGq*GZ-MD3e=kPouBQrxo@G%91yn(wGH!}mRu`n{n+$CUcu4iFlWMN@x zZeeO}W`^1r0pDHL#42+4+#OJCEC$C0N}4h@1)VWsVPRlwX$D%xgePYh85^2{&N(13 zH-r1;GE*~iJ@8?tCKz>}xrH9+m^R4r3Invg4kn;c^k!C0J^_1BIkg0w!BKr-Vqjnn zI>8ro^QS4kg(5~q2B4)wrbYx#$22v<J&F!)aDXnR#@MlFZmDMu+5%{1X=q|<i5?lC z;qw+&zUo$qLkx@@OId{WFmlOpvE<|z7dJ7A8t54qn45#*&=gb|SQ?n(Z;Kd$_97V@ zm{}0$aNxeW%+$<M&(Iva6$iccvoO#zHv-+AW^QS0YG8y~`+=`6Yi0HF<^QpVfstbw zi_kVkE=ib21Pt^Hj4Ta6CmDjao*3fG8HOfC#zvqOfP{)EbDX<i%|T0Q4NT22PR_Fc z^`?wKGZLnjCZL;+kvkjUTg%#5b-o_80%h>!m>JyA($XBXw9wMn5_I*mIbLrVg4TqB zE*HaJgB#(l!OaczK<#kQrR!)jGZsdApxtfeCZIV#15>mNZZ5>k(a!3+d)gL|KUQG+ z!^i}5$vSBK-N@9^0CYzq?pg!1Y}O2PKs%v=3ioWdxsjfMseuXR{o7_1#(HL;%f3LD z%o~~-qa`U&9p1qjB|3XID2uNIXK}P@!_dOe40M4pXfX@uJY<|p42?h=0zr4b6UZ6H zxa)9p&@qFi2IiRCnJi2|IRkXgr-iA30ou|8@U>-~th1~(p8=J(tH9+giZ?(r)5Zqo zrY0t!X=HN)JjZ;3s&G>aa{~hcjdWw&b-1~So(X7IJ!a-G)dO8nXJ%?(0@^Z++7bcZ zdeX(JcyaFpkS|ta`ohTE($v_@)W{69zueLQ-|-@#-l3_X5vV7CKXc%|_r%oP6m-0R zv84%m9d2Q+XKG*yx(d|-bW}b{4;FmwNjK}lIV`rIB((-hk^-IAV`N}rU||6|?gii4 zBST9wBV!8#6H6lkwIA+#PfS54Tw9u0VovCTj<_~4Gcz!?G_x>4UkC=i_@syRr|ezu z!i2S$Io#O7!pzJ7bTXB>kvV8e3wOuQ(9+llybGOB?T7pB6H{|bJ<#x;kpaef7tr}( zW}q8gLDQmUsP|Tzf$u))WtG}d`ED0GBgZ-xt1Y03z9-;`z6aOamts4s)YuSoJFJnp zp0Tl%EEi8+YDsy1QMO)DYI0c<Bafklxv_znnVBi*tWv@gea4^@2l=?zU<b`Ho9bCg z;X5PG+?4!@KJa}`pbdU#gYPT`pxXzb(`#r`6D$UL)Zc7~d_y4S%miY}4s&9{1oy>) zh<%7?(-N>bEAR{<mi=OgZGmXv0v^tX4)vp-n2I8YIh_UH4TWW@53&CWeX0*Mn*pCc zL7(db&C7wNW5KgzST`F&r#jFt76h4!@FQB_FdOKZg2weh$pXt{AJUv1w!nefh-I=5 z;YsuZQ(27kz|+cLf1qzS1kbL(Ohuc}0{H_T09a=G3~-*9YH6v5xaAMaW<#V~5Yd7M zVkgW&n285*pe*`)A4n%W)X_H^f>RIFR4fyIh@EZdN2Wqdh3Ui$AS9hwG8R1au<kX4 znTj^41xj~#r~E8H+r7ZCiDk;q7#;>#&rF5pE-X`ipo5sfhN4gTfhX=^`tZz$qR;q& z^+ElJzS9uoM|j3VpYa2g9|%dz&@nTUqV=2~xp(@ZZS^xU1D$e;W2+xT5@X&EbdISs zmk{=OKaivp7nXTHR!h))gp?AO1gge@{PNVI@Whgm;wDC@8eFq}#)f*9Mg%wdfmL|~ z^~?dar`BV(r;I?yVj7zmf(F|R%uNjN9Asf=2|6>u+|1a5Kv%;UcQ@R^Ko2xfZf<6Q z-Ym2<)B_DhS{hgwgL<N<%|cKwypMI0x*_<gjSXOLpbRFM7@8RyfSO{ahL9a!I6F*+ z7UqVaYuJnljTYj*z04HUO*JtzFvpzNur$^KkMvnufR??ZP5OavFY9Oh`QtD6=)8@X z%|b&{0}If0E=x<$<%Fh2_+kSz{%m1kVq#8U)YBOEGByh%@Wpo)7&k1MS(@m9#`!Ek z2grh^vQVP~v?P53tN0GjbWjI&6Bd7fX8p_!4Gc}dyIL&qbi_gD{actDTbi5VKXVS$ z`^2@<)52KK5)}Iwx5=4Vn(CRD85$cHo0uD!8lr6x0AF7=ku@;kVIjyLn=$<Xx|GG- z$imDRbjLYpXA_=gy19jci2-O+6`}aR-4VAi(X%uL56YvD?O2-Wfeyq1ou+7M0lG93 zd0@m8)DfS=YI|FG8OR@7u=vBo&=7RI3+M(<Q&1-opFd12EzC`g%*_eJhY9YUIOxI+ zL(pI|#=M`Uxt<BA#4)ijH#9Iqz2U(Oe1q9!R;`5T&q1ZtR&X{)>4_U!7=Xrw3{4F{ zi=jc&ytwl@Xvp2tkl=P+(B5WT6HOLodX@&pCYaNHmKJ)Tn^-_ajiH%=IcirNe1X{% z)~@&a!Q)ihutbNEg@uKQv6-czv5BRD5x)CR49zSo%s_iP4Dp{IYifdfJl(=v541@D z)a6GTr?RxvGX`yBH3wbyW^97G)&hKm*;LlMVuE>~=-3X94wO>Y%-GPv5OifE=nh0f ze5d&unwgqgni^S{5L%;v`wBBt3()MPp_!Qx`f62k1JLZHv5`6GFf~iiRZqyd1AK+q zG}c?q(J>%z>;QWMB~=-jm>GaBIWjP?urvojJh=mO*tVsGg&CpFxQPkQ(N7D|u{$Ql zSiAu`b;lHRnv=1GrI{h>XdCznv+1m#^h?t~-q;ED21;xgnp&EJuJ{ARrJ<!6o{2w0 zQ%lf!yT%3tPBJt#!CjME8t7RVTN;|1p${pT8yM*sTN;2iyBnDppbw3JuP~dz+T!vb zd?eK_ESUpzFP^E9iMgSH320^!U)^D91|BFiH6t(<ZGwB3IH=uWY;J*hi<!BBv7U*A zr3v_QS~C;0y?)?Z%x1FQdk_S^#cVegf0&q=n;Dsbj<Yg0GsAmBFDUVuTAG7yY{Ea@ zhWi#XQ%lf|Q<mnY7$?D-8<^;sg6^RKZT7Y>N89WNzQt@7>&BVt;DbK*U`bYHM&?Gw z7Dg6^2Ihu_7I@C2GBh<X1`TN$5X>C7$J8y2K?{*AERE6UY0M2w^-Mr#V}cTvp@}K# zNf6*$%x1IR(R!5&${l+#y<ucxZejwu$IZkTv_~1w3LZmHTfxErbnHBV*uY(rTY~O} zG&3{97>hPHFw-+PvoJEZ0G;W8zVZcpjoBR5uOjAaKsEV3%v5D)WMpV)Y-VI(Y-nU@ zVrq<MsfD45i6Q7L2qQvOhbiuw+|o=BRK}ZP$>rvH7N8qlLHGNan3<zR2WVb=E~~-5 z>H<)7?8l4_L(mxtCWhuF=4KX_cvp-Vf=&cAHZwCdB(Q+T)Q}5T1JTl44|F`9u{nB! z#N5CVv}@7K)X>7j$j}gNgBkcDvw5ugpHEH%MaKcm=rA&{G_kZWGB&pWEq<}YcOM)0 z@H`_+OG|SCH978^%uFpo=gyfK7@44-lVT1!$<zeYH#0Q^)wQTC67WrC^I0u7Yl4sF zIEd*FLle;29b-!iBhZo%(9SR14J%_4bI^K6LMOqS;=alZbVHV*nSqI+5k`C%8tR#Y z4p%m_03Bq4dToUn_$spntW7JU1VQm}2-6=%7UrPXFf|0-N(#D!3r|&UY-na`VrEIO zBZ&JdGtea)29`#~m>ofLLt{{iv$U|ZFaX^>f!eYHUuCwC)igAEHfS>TFnBT+r7i~_ z0cd1y3EInUW^9RP#>vpg!qm{*z|@GqjFTxS$)H^0$q#B<T9|^CT<Te1p4V+|XsTyy z2C6y0m(-i1PGW+uF<Zp?F>(DjP!2x=&f%!7D$wpBOAAv2bI>e5{<b=3L$R^Bsj(S> znHp1^^*HE)4GYk!5fk)#Bh3xX^o-3-4a_Z!3_xWjN>>(q5z1m#=S-JXpzU!-v22gC z0L}538(12d8k!gw<Li+d8G+WmS(;iBn8P$R=aT0_i3-?_s-WvNKv%Y4v~UeU(<z|z zY5<xoLeCbU{`eABgY@!`ploprOSS+nBm-SI3o0Byr8(~GZD?s=ZeVC`X-Oz9a8}}= z>ov@cKu2n$uck5wpVkeU%>wn7O$<@jOPZStF>@?sedwsV66BBLnEo&{F*Y<XF*i2` zU1AMdc8w={8=6`gfR?+O5a`F6;;hBZ49xY+EWy`Op!LVi4K4LRR~ds21UCVlLXDcJ zK>hJ$tXnqu?*#ed1Qvgon}hC~H82F7+iGBjw^3ziWNu<?2|D~7e`~}HXDx1KV4-JW zVPRotfWC&u+z51Dsey@+i5ciz4YZkYb5Je5ob_MUCk{|CbrQ3f0!<NvZfZ0zw=^^{ zH^y_pt)T&EXFTYjS^~bnIWZ2pmcjshxg(bh7e{<iX&&fG;wDCZb0g3_4~7P&rUsUv zk{G%32fhPk1?&9eh7B9p897d|Sgi)lU^Z<8-M0AR(U#@d&MGxF1}(iXG}SZ0wp9_d z=E}s#)WQ;URw=>5@j%DWkhD|L!if9{Oj9Z7hCR%=DEP!6=KLjiFBf?74{e?fH0lqU zo&d|C%_M;2K+`2)Im~$$#O6n|X%_Iz4s<FNZTb?$NX%&j@F}BU>oDh_4B@*N(WaoF z)`2HVuwM8GohZRNeF>cm!FJyxVgn#%xR`>%3}Pc%z#vbtkUo70b1GWUfV~KFDrV4t zV;ABYY+(b{h`v>k#X!#l?nf-smxy^iEYp{k@BqLveF@*HW`q_vkf}SUC$Uan!rY3U zZa|wAVRN)tW-k%@O40W!qFRY9c%aTfpS(m4bM(1Oh@nuoVwt=|L<suiCD>G$jcB2R zB8Qo$;In~PXD(r8Vx}Ctr=)^c41kl4F}ARQdJ%oz66AkS$pF@fb>b4H5wo~Kgbmic zico)GnYl!4N5l*pgdAGJ0Z*pG%)|^Eg8`VfG_=q&1f741<A73Dh&=kVr7>uI3a)8O zuq4K`C8%=4Ic*7%#4>HkW(e92W=wFqq6w(<z%_AcYNBUhNO0m3tm@Q0Jz-E2>NI8( z%E-vV0(1yE=r}FVYASrgga)84lp$!ugh1m1=NP(~p`o6!IcOmmM$_B~v~>=&m<u#o zX@GiFh#C0uvX!iA?@D7q-J~<%ZW2mQ&lJ>aH#ai@9pq?ffbXJ3Ljz;b(LzRq&iymR zeR-LgA!uQ$p|L5(<z?nZpxc>@KwUj!BhZyNC@os><z=f_W$&2p0!7DJY|&w6W?%x^ z>tJAR0Ny);yN6+5U;w&#&div=fQ}i?on>Z*#(JipV`nig(lIwO)iX3TG%__YG&eV} zG)6tz419UnYSx<@nUg@#aSj|EsJ&JrOVFgBk%fh!sig(z?iif@0L?fWS(+Fd8WHjb z&ZAb%3{CXR3_y4Hp?5Hh%=8RRO^uDr4M2C7q27672EMy&4Qr$1oNmx!&-0jzJq<y} zx>*`pn1jw*F)}f-;KI4`*1!^UU!AE5q4R=p-(3c}63ZMk3}%9UM5#Gw8K42^m>pwd z(0~tWq5^FzTg&RFFT)6mj0>2N0ouD@W^Q3<WMK@tj?U5ypD#eY7y|<W_tKl<zPSu^ zA(pu%XhSeYuN8F3hKZ3msOM>92|C>grHcXTeXnCZY8Jl&<c*79Z=hsx&<z{LW}w*? zOLKEW3p_&z1{R>x!$1c-5g0-+!`=BdG}kjX1I<{227HkENrL7^mU^HwH!V#;=jwv4 zc0ut5sPny^_0`RbQlKn;2{Vfu8d!ps)Pj~bgNj}=Jew{-TVyT4w=xnKL@>kM`8EWf z2m~6lLC+h;26~_^#h}z-2)ZK;HC2H+-y2x>o6Kkf`QtJce;9*K*#q75YGP_;WQ1>` z%)kOPdSzl{NoWY&9Czp2$Ux7?5Iks);SWPSbI{>xpwm4qP0Z1XDp2QpBdc(*W;`g5 zU%|}dpp(ALj0{XcH=mh<3JTnVA)rkvCZMw*2@Qsr<L-VNfsSUkFu=Gf%iP#l&j56Y zkTK|3TGSiA%)mF7ZDOtExpoE=8&|Q!hJiU~EjZ{#Awy&EybtaI*WAR|(9i_5zy^Ok zj{D{^Gb1BC3p3DW9gN%ozK<Jpk*cYw8EB#iB~^iMF5Ao+zQny8l*zAwGdW7dVQ6G- zWC=cn(bCY;)W8zY1e1X|Xe!Op$c(^glBVXyxF(T7cVd|sSehGPOp_U#>RFl@8XFlK z7=bqWq0Y;IZ!X)y%FDYV6cioTF{8r>wCCHx+!%a`wSkc(zQW4P+yb;G-jvXBV7Tut zGcz&;jZ7Ju8l#^WYYsXt(-^d!$Jork%mQs<27GtfR#xA0qTr<oH^9+>Qsx>P8i7`| zS%9u01sws5CvSjb+tSR;h`>OhInK#&&}CAfJ4Q_~n^ne^prZ|q%#6)Ibr|aPgl6Eo z%eJvDu+EDIMaNAn(P3_BWDdH|$iM(}c^JNHzYM@fUYJ-~7!xRSabI6%W&}Rn)6&=g zBX^j9Pxmx6F)=kYHV4(B$aRM$s3zaesx|RJ8mO$gg;`b^nt>+LjVw$-H`khij%&u9 z%S|l|OwEnWjR@Q&2fFAN$HE;mBTGFq&<rEST!4w8o}n3dqni;pRiO9+RFUssz5n#l zNl+fY4Ng?3dECs%$QU$?YG@2<oZ+njO-;-#EKM!UjR-7FFt@;&$Bhm2%nVGi<P8%e zJwsD-L(t?EsLVy3nXv>_<U3jaM=#$4^2QyoH&F71p{a$Lp#|t}cS8#cQ%gK|I~bT6 zni`rJnwSvU&t#6f9yd1B1I@02?j}QBePj+fF4Mrs*xcOI(7*t7&Juig*)G;eHhw=q zGc$KFXJ(8|&5bM#&CQK0%|II$@ywAKn1Ch)4NM3%)Gct{KMJ~s!W6U%4x{@AIxExE z6m&(sp_zfH5$c{~@Wo}jS+D7xo(77Gd*HZ0Nm528h6bjV=AeZx2A~b7c)GEm^9@an zj4X^y2qY=o7ngzVp#ZH{v&5Kp1s#@YYH4C<WN2b)W@v(vq|Ct=m+fJ-I^hrx^2U8E z-Y~W_H?#m9L}OtLI;{p@+t9?&%nWqyyCs1cOADOGyqFoA=$RWBnPXh+Zf;_xXJl$( z47&6ZbXf*U?Pm_YxNI-$k@g+nJ;@I+y<un!TFPKyW?*P$Vrpb;XoRQ3VQgV+W@>Ih zXqhDLTTjf4LB|-HfKG2lZyB1H>ls>_8JHNEn}ZHGL0JiAZeS$D%(0L4)xp4QP;5NJ z^oEgzsfm%fp{2QnA?W^jb39AI3_ypzn;4iH5;_A3_pK*p#%7?>*1!T|C76kYo}rnA z87P068d#v7$6*e>^<+P*s(XAtD1$%3%-}|#ZM>kVDN}G48PCci1JK>+W@ey!eDSvo zElhDvy&9YAnVFlIU}kVjJtHGC15;y5Q)5GO)Z<mn4L~c?53uf0nso_OgFnVngBzM# zniv}!7=sQNHUgc4fxG52vM@0*HUk~sLBJQdr@@Ua^el`FOe`_|VG7!*W@Kn!VPa}& zVvc$qhq(c$20zF;Z^qs-P?~xIPE)9rhNXpxiKT&=iGc~ILco{7jZ6)VOe`!-2~~Z# zFFgU>reOhE&Toj(5HU5>GXdY54L)ew0%Zo-9DM7^AyyXt)!m>Ci%+2&78ii0`z}0q zxE$+-MH4eaQ%fT=&>?D=8x}zulR+zkER6Jwh&q|n(3G_KJ`0-6_nE>r0%Feh8G@!~ zz!Pa$2H?$MQ;2BuTF|j_ur{=*3DEu@xRGeX@1Qw7xE$K>J7|sxZXM?Ey9vxCXmeW3 zpgaDc^PHH|67Y!-th0U4nFsXQJ{IKT9?_@!z&?j*L<<#=M)+I@`ff!OjX1&uJV}CO zvm#=DBwE0LYy<@;L?dR<fX*3&$f1P|NF#ig7MAHgq&<F^Ne0huMPtx}1#}Vx%XA++ zKG3K8z@Y=vhZZ_uIb27RLT*Nc=|l@2<n5Z+XZxTrX@nU(NY@*p&7Xt94j$;}^L^l% zIjE`Fru*Q5jy~N7${Pqt%uHo~kVFd~RGpaF3Nhnpj21p1op?7ZA|`gx=lnog;V!~5 z>4(sXKIw<56SL4kY|2ER^@9XFG;q<U{UDOign+(d5j@onlS2z36gjj20w2yy|LuyP z3!crT<ZxX~$O@51pZ7DwH}40Q6yf3mZ7?*@gIqqyYGR^i1iF0@>wZP3EcOkH7AAUz zmIO8|Le$`z_cOB4GcYAM?*~@3_3yGpphn>{ER8|~6H5bAGczMI3sW;=BRuP$4U7yy z!#_r5gl=@Oz}*EmG0?L#H#Ef9u4ry*q-Sbm1X@#QVQy@M)?EVizz?&suUMJ}Y7{=l zY!reHx;Fu>j5Id@9V2gm&ljMD#Ri}~S%i9hxVzw>`!zu8lnpUvHcUawRLx8+O+lL? z&CSsIOQ50jBdofqta_kfofqI?9n?l4=rl14L(pB<rpCtjj$t$a-I8Sjn#v)tc@+1h zWo9PEdd7xkMxdjnWRX{Z37CT>i$SB2#%2Zv=4L31ZOy@VmK|j^f5B4#N>VSeBq<|H zGfN9oGYeA-BhYP;c*Y714b3e<9b7`E7vjFM%*+IIzKa3qWKHySY^I<CUJT7ljV%o= zQ3n#t!55YtW8MDZ>km+pdWD&!j6ps(G&M9gG&VP~ur$EeKsT^3F)=eSGqoTvQi%J; zGBXoXJyY;$j~D~DrsjGEmKNsbW}u@aEzm|1z*m+XXKns-Y8A*IuQB~$2pTH1v@kM* zjGr0e>$@758d!o(cp<c@4EL2~W+rBO7Dg7J=^6AsxT%GnvAHEEMS#{N8=+<m@RemJ zSW_;i1cCZXZ@~Q}lz|;XOCxhrOH(65V*^uDP$wQwsxmM%H#Rk~FeNm~W{GoCnHi|7 zZDDL;im}4e6m->*sezfLrKN$PDeBFm=7z>X%p50K=e;Xt0Y%4K%;+!%9nx%W2)aDg z(!>&Uk}Iz6s|DyRQ*%R8(EV)qyRW#fEHg8))C1jv1)7{h8!R+4)H5_OG&C~;T?=ZC zIv-#TzOw8T>vZQUQ$Z!wJ8(&b5*?r;gNzJKKw~zbn_G-<4<=ZEW^oJ*EzAwf2<+sw z#Cgq$nW=%ExiM%M4c!+;dPWw;2H;EbOie6MhCI!|SC*Y-Wt^D}-s1NjoTyOBTVn%5 z(1rqI69Y?2b0b6Cb4(VXTPlsrOwCORP3z;nvCPcWP|w`L+}If7xL9*DV?EF{m8J&9 zpbZMBcXpbCZ!9~*`fOWgDkxEXz)VyoCMK4k4L#<@78al@=x~=+7M2zkpmV8>j7$j3 zh~vJq40IQkIcO}*6r-#%Gto0Pu{1HVG&ZxaG)Fx$&)g7Hjh|(`dXQr(D35;xM+aJ> zG6qc>fmVSV8XACZ;liCcKvy1t&T=C(&Sq(eb3VY-SkJ=5)W`^9oXyNs&)Cuow4=<# z2y}ig^3<g{_|md-ta@Cw6F|}N2{SrCgF>KPEQX+6!bT=0xQkp1OAA92Gc$7&0|GlP z&2V2@2D%H&($w78!T@6s+RRK3bO3^-iG`uLxiRW-bLNJi3Gwr+*Zx<xfTH6wmgoTA zS#4@;2D*XN6kl@$bn>QwnS}*tULJ2*WoCeTLfq6$546SzbJ)|&Tn}_;fTfwCfw_el z>Ydf*;7iLcuv&hQ4hI!gU%*8bN+t)L8E9l?Yzdm*H#WvIJ!4^MZenI;Y6RMuLckZe z7q*##E@T3om~M`CB8Rz|g`TCQskw=Txv7P*A!-vBd}Y~1)`QFUMSvpXD`sSv7#e~W zo0yn@PMk9b9Vv}FZ<reznVNz&UgIxt%?xlJwrXZ-p=WLYniRwEhPi>Bk*Tqvg{e8H z<A7R?gRd;R#QNItYy&87e8bEe#s(%9h8C8lCdP&q=4OT#`0|FCxdr%C5KH_U{LBn+ zuWK{4)HAg-2JMwcZ;qIQ>OWJ^xwqzK7KUiUw??3P{4y)Q!UFI){NFL712l_l2s(Jp z7<2=vp#|>QG7C#H6BE#~5(4*Qnc=>(%*+flb7^UAXlaV!4I@26GecuzV^cE&OVG&* zNHehJ;LFOcu<Gmz76qlMA7F2w<_!Z=GYilWhK2@~X2vGCXUi-=r@n(rb_4vY^UMrz z52l+L>VZxMFg3&UhOwR@csjro+zUk=g$7?&c9r$P?5tK$s``nUstipH%*+fdj7>qe z8X8#Ox#!CQbcv*yk%^%(fn8;01~|`oF*7sLGc_?avBWru*xcMi&%n~$(7@8%(!|UV z_10>0@O@?1SSQPVJ__>3FHC=cx}_$T#+C*~CMG5ppnZzCGr6e=XjTApkTij^3ir}B zGh;n7Gf+i~(T_C;?YA}pt>iGX1RZsPQUe-+D)Q^BI=?sYgNoeW;35~bBDXLCEf)b@ z4sHNGp9E)P-NF(y*J}v63l@Jz*31BRMQ#Q<kJJ)$yC_;e*4#`Fy!h7Az|_(b^_FCF z@YN?bSPPU6?+5wf57-wdnZp#c)f6<>WN2&xnmWVd2@`W8V<QWKLnCH}xM#%8O!X|x z%|Ocs(Av1>=6WVZ7Dfi928PB)=B6ljU7CY0KDo)t&U^xVFa2N4EDoBXGBG!`1Z~(h zH@CpoHZ(CdH@7f0G&aFMlWd0j;uAA7Gd<AKI}0PsEN-D^VhLLDXbL*Q-2%1Z0AGA^ zi&d@fEch7yf0*7dvakd#E(GmCHU=#z#upg|pgr~`M#lITAekBBuEjyeTU#2LfNq0E zj}1#b3lkFqGf-IrI#w1XXMit0xy>4K<V_i9Y~(-Y*od*QxrqsA`qk9X*cf!n4ektX zY-RzTGbb=3Zf0nVa}L(bQV-NKz-Sm+80vx6a9Elcn3)?}ptaM%*Ph&AReh#xv4WkE zqk+|G5onL!KJcX9i(6eQu<r3QGq5x=1+90&vd0f}@2Cmr;15gC04u>$O2LbYNSO4q z&@-XUq#u0B3~dGnJVgQBbcc2L9Xg$cHoFC$hJk9sGCcv`bB8uNfvn98^%^tKkUeO= z3_Oj9Hu4TSNfk870+vIY*n-R;KwXJ8a|87pWYP<5;s!+yd!Rt{p@j-qA9UIQ+X<y0 zKR`61g$vm4FpX&80`fe3PaXQ4A4n2mDq7HhodccBFhmO)@Pq}-Mzo*-849-%+ngUl z5-o5*0S<}`uqV;C_%R#nA*S^((+mYW{BX_rfp+-8=bo@{@q-2r`lKIn&>5ix53(HA z9ez+VNuTk9X~Y&dFgeVW1K+4-jFxi14u!@s`UXEp9K#I7OgMOV_!;6mnv{au2%*lw zax^JCabTP3gJ%HrsXlN3zzoF`I9QG*McPt`8921x;wQ?*1DSw>onXyks%Hv17#qh9 zKZvv-7biqldO>LuBeR*F8E7#CNT{GFKRLCySkFKYA%!u?2cDCMPQxKIz@`AfvXa<N zC1n9!10|)1?@&^R5~$e*df@X)15%5UQ}ari7+H;ox``01D(LT*d7yS|BdgF(MlO`r zxS^$q1?bWsW6<sfb9|>GSXdexg9eg7r-k9~Rp7p*%*@<C4?H$*W{y4~V*%<nfyQ{u zEJ1fMBX?E7ca+^_U39ng7^rX5#45BK-4_;S2Bv0~pjDeD=4M7FMtE9)pnKVj%|LBg z0=~e#1l`<74|F@X5$5?{pjlbaYIx9q7wD2C)D|FU0oy&+6F$?!K>ldP^arR3Z)9R@ z0h-LPG_k~U${*-NeiI`D3v*)vD^$&J-%(};>XDk5gIa;;LkAY7pgn(vh6ZK^#>Sx0 zJ(TzWEnvIPsvU8@6*P3v!YZ_jkqf1FWN2b(2%3O2H8L<XF~f6kmW8E}k)<(cVJ?9k z0cM7{yWHlcdZ0_r%rPfqEX?%`Ko@pcnpql~fUd|y@djuO`UBSLW8BUlZ?uBFftooC zjLpnIbKe#gCYGk4E9r2z$PFz`K&@p9QvyREhPWrd%|S!52BsKCV47QiX7h~<O$`h{ zF@iP&4!))AA?rgnum7M_)rKWi85x51$$)lNS%OYE!aW0SVQC0D6A`q4lt7Og_cdi^ zpnDt)j7?224_ySE<6#OqFAB7p-UO|;Y7CkIf5fV7`|<fa1}2VnR-x@^smj#U0CX6Q z1!xy9Xm<dfOm1id>YJNc5?J?aW@Nx6hk85^{G=vx3q2Ea3ydYImZ0@(`O$o<<r!EE zK!X6FG7<IWRC8lXA!d%ptby?y>p{hC2e{akhFt(81i1jn!pPjr*wVznz|s`o+!E-J zVna)FV*>&aVubTVHZyb3KqqLE5yl24OVB_kXw@)ikRB9a$oT_&RoN5PvaFrTp#0GZ z&L1e*+{Dn-0DNSlvALmv1)du&L389L2Bt=a<^*nrG{b#WnHlKLB@+V^1I(2bmPUF; zmPVi<X-fl3V@uQ#LK8zFW{#(<j;*oa1@&EEZ=hy#(5?v3dU{JEb2BqjbKILWEG!KS zEi8;crw<btKQO|*oy@`zJYR{q@5j<u4>VzEXbCz!(iClJ1^BA6XRNX3ufGJvMmIKZ zm>60ZS(q9aLaw&My`9X$!V+{row>201^$IDpz~jGobzX9VWekaXb2j3LZ8gAG|@9Q zGd2Vb+8UUldjm9j{+zY_HG>q$8$DROVQ2}`YH4g{U}0fkVTyZSfQ1F9@nUFTKw!tH z8ScBv%q&dw3=BaFaxf<PEKT)52iuv0@~Mdl>gINH6HrzDg7vEa&t{M}da-x|G}~%w zVrB|j=x$(OjAt^#!qU*l!qCjn$e6%n2JWlM%q&3n_?a7mE@VO*=d=Xf<7Z)RVF8M5 zW7MHF@J(eeS-aa>3idKEa`b`AT$G#249yHp%?ykUEI{cVcY$kRVQy}0W@=_)Nuc^O zGRJjrq?rZi4nG4UP!WJOu4W0k!w)nkWCXtd8Fh;W_^Ps3ti@}!mVlz79~>1Z#gvh; zp|LTjk!xuH8eqfIIJB@ZF|;rR?b9NZFK`c>TbSz^gSMlYW6XeCTIhkc`<a6#>&(!1 z1(<*a&R?^d^<At4)fp2o>kQDD=tdTx<YZ!KYK~`7g@uKI8EEgki6tRl;9kaNVWDRN zTK9*sDZs+OK+gblfQG3l==3}z)CFKBpi2A=>zDcWQ$dk25gZw)g)Jy1j0_FT&5bNT z+h*_-wif2*24?0a<^=Nv?u*LIzz0BsPT500F2TaUP|pN(?yQNiu{o%bj8gSk3NdrM zWi?};`~(yklfaRInx@Rn%nd=%z}yIQ3L(zTOBSFex}~K#p>6GE#<(kROG7<l&>aVc z=!3Nu21cMEbt7X_3nS3>VAP3Y@I7VkSQ*)~Zh=~cld-f64GqjdcaIsHgLhaN;%OOL zfbO9;Gch%^Adth2agUr^8tH-VRkk!lUpZxAV4?@=_ZXO(nV5klMN#@q;G4?cv$h-Q z-3R$&3Z_2{Ees4nYlzIvEiEn0EX?s`anNZU<|d{l1h%}I8RMP+w=~wX09}D$jy^YL zVPL9fY++<-VF+pv8KNGXY!1Gv>;r50Ylh7re@w;nhmiqDH+b0H(7+Jy3NQ;ZBXct& zb4zn`0+}55Rb`+X8w`vrKr2kp`hOM%W_q9vUZ68u4M68VpvDKN4*$s7w)VRo$RE=% z{b6WeWMm1Nb~Q9HvH&gj#8Y#aS{j-gnSjC*e}5eJO($lSW_qTer7{NSt#u0n3(x{d z&|WVKBTG}XX1Xb;692?HL2?gx3Vb@2!phtdw0YOU#M08j%mB1z7iS01!qn8%+zhn0 zmOv$r`>qo+P(5d0X$d-M8nqI)FtF4!2Gzvo=EkOG<|rFq&B0fld}d{zoErs-ju}{@ z!_vUmz}yJ5&)eJrbXy9(=rFVdEkm&|CFBj<6*;J$GXO0{!6>dkCnuYN?nMS&PJng_ zhq)=JKmLU^c^{iBsP34F868GO76!(k62!#Z(Ad-*&$Wsc7NF&a=BA(v9S9^V+%-Aq zsxD(wQwvM<3v?_D4fRYcK*z3H7@L`xpw7C2Z#wzPnv?&0+HQ76j#;c$TR~G~cfeC* zC$?{0fpuS;xtTHO;9Srgm>l{=e!NB?kDGz+p8@SCAUH>6Y^-N!NWvVMrJjKq`5WWF z!=<1r+c4*YEOBp)Gl1_#!<-H>f@wn=(gzK{gNCiavsP$B`mjk9upHW`HAo+P0u61J zjM)G(-V5>o=9o47kWb8sAS2KyF-RAli4Ls$;-Ew8==<Wp!|u>|2lQ=m5D&m4v4#pv z5^J!)B(a7I%srR^L-xiv_-q#XEq=(J#4<+)-Yp5421A=8L*7P&F-2yiX8}Kw5;JfR zJD$+D#i0Z%`YD(YNnDd;kd1NBaK$o7W`dYOLrXfKgo=<vOFR%sXpB&EnhZYqNZpNb z@Q6mADFa6|%paKf3Uux+IG&BsLWkAJ9O*_z^lfqAQ~(Wh?7QNiR-*5UL(zy<;D90; zRH}g8gFaIR_6N*H%)EuzHi*6_4q_@yCtBVDMKe4`OwfXd#Q?N9dH}Y?8GsI1#<MLB zERVJ=&Ja8ah2uC(h$P00nF(kYD|A*1bH)rTD~)Z&jLp#0T+fK$ftV0QQ1dZn%}kB- zj0oT42Ue9j?aq5p?{7Ai-k-6NsiC>4xq*=>=qL_6<F}wn+tkF&#K4$PGacs=Hqezz z7Uss7H^*5R8tIuBnVOgx8kib`8a$}2bWm6P8!PvkOY1<*!a11DLeQdTGfN9YOC!({ zI7@ufG!~#G#-O<%0_RVe;l8QN+`tfYi;1zhIYuiTlu(QeEG-R9j10_8P>(e;2j5io zowb5(YaGZQb20s4XlY^zy7b2abd-pp3BDDc7RKhLhKA;#IUW4XLKB?5anM~w29_44 zhQ^r9TN6Fdh2KWzpy4nhG=G4vD*M6u=BW?(zL|NL{xC8J&5KwXS(urE7qsD7j%Q(P zYyr9k#nga6GadI;WuUu?jEs#8%`DNU1uP6r^~^1d%|Ulg8JU@)?VJH$RrZrLZQeQX zxt{Yeo9Twe=4K`amS!eK#-MR#b37}DEsPC7hXaB}iwVRB&fYlavLYj6b7M<W%w{@h z=+hE(3q9!S7}TLp@Kt5MSi5}AgoBdR0xZ#CW?^n=Vqj`!09q$%Zia7g#0YdfxdCXC zDgkfcT#gR9tjNg3#MI0JGg+DInS<^q1D$GOVTO8hoH_Wevfr$Rtg*Zxe=NlGhasqM z0UG2sH3A)!WsGm+(8$Qr)WXongwR56+?SP^8<^`E8(5ebn_*^i(4}$)My3WP=AaYv zP|jd92VYk9hjotc?+KtncM+CC*T~So*whfTE63Q-1kXNR3k%Q%jHae$W`uSJn3&<( z0Ay}pp=V-Xh`Eg0!q8IB($v@#Jir4Q9Y-m2!B>_2WsPE(at_poU5q7jSely}n;RRN zgZhsq=J=K>SQwg`nV1`!8XDu@k7Z_Jj@uiSdZuQeJCo2yc#I773_%Os!6#Z;n4r#? zfp04N$Ev8F!Uyuk5=?Ix8G^1|H8C?cG&3?ZHo~{Z&%)5q(!$up+?>D-cxEOzyW*fL zm(0vT_m-NVO*UB=8R>z>_svXAOpJ_BFU~Os-&FRW^+I!SIVepn#ge8>EG!KyOh6|W znwnY|<JqZUVE|hFY-vK^>Qqqn#4%%LZfK}yW?}}q{R$&8Kv&tCgLl9h85)?PZdC+d zRMx<@kNp;SGuAS2WS|U28-h-fG%z<XHa0Z?9k_>Qc*np5bf>VX38Cf)?t9A2LFZZ< znu89K!|;X)=nN`LOG8sLQ*#6KGzA({Z)CHUVlxI6RLijxR2D`ihL)Bl1{R>Ro6HUH z)f=E`b8}13lrsJT7xzVFplhQ*cbl4F?2WT9GSxExc>#2zu8BF?_Hgh;Wld}co~40X zhbzE|3T1L1bWF7&==v0MBLfqBll$hNOC$|JCvOsH9OAyF%-qmK&lGeZ9LB7;g^`(_ zfu*6bk*T?<C8$AyQc!`fDQjk%vFL+3D2K1aOjO{j;7rX-EiJ(Z^WtganuB*y85tXz z<KN?MhWnN>&;?lL#zw}LCg}697DncJMxY#O0orn6g0?pfd`npin^Br1_)M@>SQ3?y zk)@F(X#bNb=y*>vJhS5FpdGNFn#GvF9tYgFl$jfv>lqq?0vvshg9T{)J810E$P^sy zsAIU`TgqD5yzO_%fudtIW^{lKBLqz~nOc~EhPv@ZhlQD;xw)m0i5Y=43Z^($xPk7D z0!<7Vm|!$Uj1BY*&5X?qEi4Q`Z8y|<1AJ3i8{3?k$S#mK)?j+W(A?P47<8(GxhZ(# z4ep}K9CY}ig*m9^AdtmzZYl#^9c2#M|7L+P;bd$GN>!HTpo4+UEYXH=!8et)vz<~& zTnO^US}fi$F)%VVH3d~VW|sJ_@Ut*Cw=g#awSz4QWe%JJ>Yz)P3{4CyFt_+w7=vfj zOpJ|9EkOkqT5Ny@)H~R2?EH5VRN}6~k~s`54MA628=9C~8XFrJ;At9~o122_7b8<b zlgg&JYjGnZJrhvoFviH_#>RS<W|l?<puN1H7)LFu%!QaaI@u!cCcXsioLSE*v;%$p zC+J)lOHi}Y(98(5k`+&~GB*UB31DDJ;Ql)^Q%hW1XUvU^LGw)(rs!=EV^h#<6R5Wj zI@=R<GS(c_9q(eBE5N1$YKv?DR~x9cxQVfmfsrxzqB3(!d=vcUX6B~mre?+_76b|^ z-1n4$?w~L+u`~f4Ka4ilWNfBqU|<NEzyY1Wg4#+4UsKl2#u)jm9F(LsVo6fwpt~td zK_ec<<|d%IDx6bhper<uK{o{wxTVv~40mVT$W+hN$k5CPOF?C>X8@{FKx;S6j4e^u zDS+=P>tS=BZPx|z$0kgF7#W$Gfu_aHO+XpM2yfOf1GPpB4GjzlMF-BQadRUxJ<w)b z3sXb%MwPLJo{_PMk)<VQahE0PP1WY$J5PGq4zu<df=a5*;F1buy#=W5G%*8RiC|%B z3fcyXCu@L`l$o)aff0ed;kYk70bN324mwWN5`AyDg|Vfc5$JFe(71vL+8RCZohN;4 z3!Hv|Z=>IW#T&-Ppal-bhM=vS78Zu)xEEZQn;Myd*1H-K=r!TK^28ieR~uQFTAE|j z;-Is+Eewnd4NXB?_0Sf#fv-I2XS>h8Ng5OzTfyEy&Eudwt%gPxpr(issH=}VbC`fv zY+0BR^ak!)+{jYT)Eu<Z2BRwu+C~RDU)#*Y)YQ}%ZC)IF<;euLq60gU*ReBlY-6=r z0h+=51)jm2ap^Yp8B9yivL*vVJ!8<FN<4X~CFS`=*?L8($z@H9yhflNyQz_>nHgx1 zneYszg`PPnM|*;j7Wp%npbb{wc|)`rOvp$)bW<MMgcM|aAG%8pZAO9F0K8`lY$WD< z6nLu-SPpYO!4N(xiZ)dTo`-<ihBlc1p4)&*p-m-#rJ(Ldn`i;~4L&D|HVXx|3_6oS z@)RaaA7+@qCyUT``GHRvg-(^AAM6PUXP6{fsDLC9recN*e3O?UX28HVN1<=>0~rdR z4>H6SG*H)InZN|cEqEdc{T@GXnt*9U3mX<A(6m1^;IN$Q3HJv21SUA5V1{A|8}R9a z$pxi)MrdKf3fklcpMk<Me~IJ~w1flp2+XaRp##cG-~gcR>?PDf^w~?~05HbPPKfC_ z^j&_C8911!XrTi(6()z7a`5c(GX+g;K_kQ%EpSlM75eNYvXxjSFX1Tw>n=a2Q%Rk> zgy$Uexl0ts;0YV_nM<%fT2EYJZt?^5Dx_p_9p}jcmPVVl1l`UAO8$aaw)wF_Br$IB zGtmQY;6&8{+2_XsI_gsj$E2l^p`N7?p<DbQif~O@ni%MrnGih96RfK3k!=>Jf3Y1) z|H9nJ&;)ecje)tjfrTla*(Gxm(3vTQW(Ed?8iKgT&p{VQnHU*kY>~47ACL*UNzlL? zbnX)BVr~mlA!d$=Yy~`3XFx5e9oSk>2Bx4bU1p$xEem`{R+yWBt{^uzHzTx^4fj1| z=Aa8TOpHyjOlE*C)UY%)1WjfbfX;10>9JaXdft=RWNap=fV{C2><!drxsj=<IcO}$ z*wEC#*a**cYZm69IZJcG8~t$KQ)UhtCNMEGvcwz*F##PlYi?<1WM*j$x*Y`78=#K& zWH$dx=`o-*wF@&%85vj_8=4w{w%=JA7~(rW%iP%5+!%DNhY_J>Iqr#YV`Dut&^06& zqdA}(H7pFwEi6Ijix{9@t!-`r>UmFLJNW!zHYhT7V@8IdnW3ebsfnQpsAFLO+Vq0E zS#D%$2^xPhC2;wj8SY!k%#BU-EJ5vILyQ3g6Ei)~N?6c^H|9oWs6&Jnpz-smY<JWq zfzQv{gV|*@G_$a<1YLM#X$0z!n&25fH#agfGzHD=5<1Ss9Cz0nG)@3Is08DJ6AKe_ zJ<wJV3uEx=2XoZ*k>G2}rm^W>GJgPyj=h-CVPs@vU|?bjx~az8)WFgN->8(4k+G?f zrG=3tf$eeTI4?LcH#P?ycmnE@qHa5}FtN}x1C4~3S(=)dnxmbr3cjUmI$M)9%L>p4 z!amICFfuYSwKTObHnTJ{H!`xcz!x2c7NEOHO)L!vWDaxO)8NMDdX^RjM#h#HgKMCJ zK0$}F85>$!8W^B$y98fTHiM1V`h^}SI`)I31GUd;Y;FmfdIil!nwXp5*|1>_x|rU~ z40LQ5{vli3x0IQKF7Yz8GzT45h87*B26|?Opmo3CWR7-XA^4WEnQV_DH|T<jssmVx zDoZ0v3u6ld14DBo3j<Sp^8khhpd4giW=LSG1MXYO%uNjRK!?#<nqo{?ni}d^n3@}b zkEJ$1PgI~4>9g4Ey{zg%k#P_l87TDzXs;URoLn<A10xW`mp2T|4J^&gKo{2$hz;De zxQU@2XmybZ#yE(nu^wpV7qn2t%m8${7V`EP@Ev8d*}P_IS%UJ$AuM^r#0<1y%*?<L zv@YKW&pn+M<_5+_W|p9vrw9z7o8ulpH!;>TGOz$$oXCZqs7&<C%?wOIF>YvLj&{X~ zC8!#o!?xqqvwNWEI1G*sl)PbTVgTASYGPq(0=h2|Pn*ij5_ANgp@FeEfk8rZ+~ema zCVFN@plN9Itz{PA^D!+gjm(WfWeD17X5d@O=CW1IX!{I`jw6`SVPFYbX<%k-VFp^a zVQGpdRhfadQJ8_|A_%k%abHsgx;e_w$jH(JV|TTMDfnU_Q!^tIQxhZ5L6#`V3RIEL zV`KX>eH|z|j)J2DHFp>qTAEpcPW%I{*)cc8Q{<Xi8k(De_7oCYBZB*)GIP+?QO1U5 z7MQuiLeI>?*a&p49BAwnwIT;!R5qWj%JdibeDPzL(P0Fdr8hPL4cCI2iTLI$L2Hx@ z3_-_V6PWC?z+I7>Sm+s<ni+vk-bc?JmU^IO6=?gX0cbA}a_i6nd{fy1w#8Fj!P}XR zWBS9;*x1s<7_^Dc)WE_FG@6RDU1errVqjuwU}#2YeT4<?F?174JrhF%1JEgxX#OxW z0A18+23lVST5pCjGh+e1s%#<KSzE6fQ1&>1=?_rRVPbA>Y6-fu&B(wAPu*c=VPFW_ z%S7m|GBezFm6@9w=$V45T+BHQGb24iV*?8#3(yIxpfjnFvWEruuChgJJPivMfwIR* zaP~kgtw5V+%uNkIcR7F>(zvGr%*@R|*De|v5$Zcx;9k%MI?~$I40KW~dZ7zC(i*g! z26PsLsi6f*_OJloRkoPz);xuypxM4tn6rHb<|dYg<_4g}U`ECkMy7aLBxdGDpmjkO z=7idZ;5^I~Uy_-dT3nKtThPP^I|u@F{e*=X#%^8<GZQ@%LkmmLdI3u_&=eI)T!1R_ zC2T?Q-QW)3X>eSi7F8AohK5EaMxYDSLD!PwD{?{0RY6zm84#!eEpX3-n;Pp`f{s}? zN57`i!VGjsk_G6TThKueXmJ7RjxS|X3AAwpWsNhKSp#(JiHU)wg`ug5v4NS1A)cL= zW@aX4<`xzv#ssbqFvERUnYk%wWsZfRImQu^7G`F8W(Jn#7N9M7CT6G?JX?V8DqF_J zY<Bu2$RB4h{b6Ke47$+4#Ms2p$iUFt0<S*|%q=X;KoNq!U1fp0CN~A$ooH@qj&Vkc zg_*gYg@L7^g_((|g{cMVf;I~SP=|auTlLqIOdx-p!{QHc#b*gR0M^(5<P$u3+|&#- z4`pUbXh*MwC9XaD=AaX;4UEk(Z-=x1ooH=p3T{zYn3))&EWWic0M+Cx*m?t&o(1{i zJf=U44UIutrj0?P76zsk_&QH!rl84DBV$WKYua#McVcd8p=W9V8j!*0JeeEl85)DG z$Tczr9dnMd!otD;)F)rb_N3IR1LThjnEo&_Gqf-Q9id=qW@u(=W{IzbXaZh}Xlg>} zL?_%Ao|v10ParinF~-=LY!2E(Zf0z1Zf<U3Zft@wt#1Lo@?;fT=$pi+d)OH{F0xu} z1I_r&*tC2po4|*b_LbQ7ESeaYSsEA_nt~=Tu<Tg`ub#C8o!Vk#PWUoELt{N-Gm`c! znp=`T<7WZeyoWa9$84Ynn)(6H&S6gYnZhT`&?a!0L7NDn^K6(Ce#USkF=r@@;Kzuf zP2Yg$#Gpo^4Z*V*fKIi8%Ark9uo!@Lh(c!rF=uYz9zdI$08i>b=Pl4@{6I#+rwXv_ zS_F@ZgC?1<>{>)z^Ja({E{KcnuuS?PwgMVrh74k3B4*Ga=6uj6{Xi2i2#;V399RgT zg$@hoHc$8tL$o9Vnn*?L=fg}iMsO=h+_#80OcBepA3OxGZCk`W?MG<aqA9{BXyF42 z1JH~Kcy15<a8HyZf@R_lo<z`3_e3!j`-Ohc$t^51e+W}C^A+NPJZv+6a9^TtTSQ4B z==b@7GYND<DCWLJ3q1>XOruZzF&pTC_B4aT4$I6RJTlQ|{y=F99_Z*(e=G)i2w$Sl z{edJAIx)isk@wIi|3GmG4<9UNd?M+@EPG6hrD#3>Cx(8=C#wnQ{vSN|`9b7`P>%Uz zF*Vi$O{!v>0EEbipx@>PUbzCDp~Kv^2$sb)18AvdNO%SitVo&*d|RLa+F_q8CPsRe zQp#LXsI!l#CxU_%ofJy_3u=m7!fc9w&gwU`1RZH;U<A6g1>fL^iK(GE=)x94r!wNc zwanbiP|pB#@tF~3Q^ZKm475%YbOw?M+9?ng;9JX9vpr|IJsH%Cy$tR-q4Z*n4Nc6A z49qP}Oie97Q%`tWxF&{1rbgzV(JlNfb=;ShnS;9AM#iR=m@Rd4V?8r-(5(_CpyL@( zcl%iwf-VkU!{*0p_66jPE12E@O$iv8S{j=fnSyrO;p=c1n;V0!8Mh?V8MnmU88<W5 zGX>qOg1Pk8+*Hrd#N5Ed9JI>~v_v1dA8QCY>SZlkXWY7IkT<Skdc)Yn(8Acl(%it@ z!oV2R55PUdV{8n%A>G)}kU%#U_nl?tW~O=uMrIbElUUG(ctD3|np>Dy8h}pfv_M@Z zX<-QJj;~{jT<0wWnjN?Xo*h8hvjN((XkiK(NCVw;i7#syS(<?6o=uDi`2u%m9DMf@ zX!sLjb-lTTo`IR6fu)6op^1SZ>Nu_i_|CHRY-tN_?Ev}WI@lK|S;Np6Gy?<*0do`3 z#V>fWhLNeMk&&UHr6GY~TuXDDd&|tsL07g|VjdA@ZV9@v#T2y6(Zbvm^`;XGL(ri5 z1~v=l+_j*B>IRmA%GeY%Fk)_MY-j*F&Jb^G7@C@c`emjBM%8g&Sq8d$33RiJnGwdc zvIV&B2Rane1T?XXGLLBizOrm1Th24fbWql~iJ3KwKnE;Z7=iXPnSt)@#1k8a=4M7l z7Usrg1h(^9;_ix@S%Su#LH8h{54Twu>Vd9J1I-PX8yKK2y|n;eS+<F-%+kmP<c(Wk zZ=j4+8H0w@!E0Vkj7&hMA>#9gv6&g@cvb?L!yNaOW#;CFdIrWOMxZT)XbaOpM?_nI zCREK#EYP-WSQvtO;+xsLRMjtoym1@s4Ya&rZfI_9VPa|m8rsCSn-?^WWB}T~MPLJs zxdHAmb#o)o<|`v(3yj*&!dTDD#K^+b$lSu%$iNsiQGstP+rl>YiM%c-bKJp_IZQxR znz@mwsfoF%sgWVR!A}EIb7MnOGjjs<hPeUmF?DleJwppqGXrBwj8tW!2O1VJG`9rZ z#)o<)l?C|DvaM{Dx2}Q@AGnLfABGmDpgY7&4M2zb8k^zuhoQNtnTdrFfirN;ao<@6 zx_rq5bUz&COs0jIo`ErFLfF*M(%203fJ_VUrDfaLq@HaP0ma8XZ2mAZHa9ji0p0Io zVq{{9=bTSdOLKE`&~1DKT2-K(kGS@bnw#pGS(q9dV$SkgfDXqnvotmaZHF~QogTLU zUs|@EO=;88N1*I+A2WLxn;MvcLfFE<(h@ZDggcX)T7u5E1Z_FOU*?+QzO>BT+)U3L zv@#uY@1=!>o-t@;x`~A`=<GPusTw0tJ-&nO?Bu0aKyw2RFy{sgEsQ|dIaz`({WS;O z(~HL+7NBeJj6l1y@U{-k4RGE)YHn_>XK7?;gt3sv!cq^^pfWQt1f2+nmd8PZ>O0xi zhy;VrIeUm17bYfVpj&DU4NXiywKTpYWnpR#I?~(B1b=J99QTc7=H?c97T~)qF}9vq z8t8#es5Z1PG&eRfG)GygX92#kY!_R9?DUVItnmmlYZx0E8X6g!8Jn6JT3VP}nBzG> z0d!)br5UI!!M_vM+yM8Oy1AvEg{iT*1!jB1(ooODz!Y?Us)4x$D7KKBxJIBc_1$dm z?T@?x`QtIBKfrsTOf1bnhmjhXn4949hdF4!pP`AdG5%(ixdHBq+`>T50yM#8ju{_D zdL{-2=9ZvK(v1vJk6yI^-&wYYEnvDK1IQmwF#Ta{W?%@qHxYCjo|%auo@=WuOhNm* zL3dmcxX<0(&;aM$0O*`+Q}Cg{=v9ZMF=%m&5on9Jv567t?h^~}tz~=J!k*Yjfc)_k z(;r4A=0@fgriO-~W}<-szIAS<pjl_oE#~F~;sf`!W#$$}dgdlZ;4@;;`W%)fdPblL zZc{VxVVS6N1K?}R_OUGu>$neUtv|!oS~mgRe_(EIVrU6k(~764GBY(dGBdC+C9vVo z9QU<l<`%}FJLHTFOwG8^+EtdOdL~BZpzGH_l^AM?3%<2%KijgZMc|6#Ic8yHU}<h_ zXl7_(W?^n>Xkdb8V=`z8#L~pX(2T$#Lgt3JSGif3>Vf8)%*`++YAiuVmV)m`G&i>Z z9r=x%$-(!Q9bmiKB-RG1|6X8v1GJga+`!Vn*vJ&Lu@_&N3p(f1+yHc@J^p$F_dO`) z7G`?JCME{vmKe=L&>5hXre>C)>-H=y4N;DQumInLa**xQwza~byzvq<Zy1`J8ySES zi>ZN$u@UI(9-RGgQ&VFzL(ndN0*Aer8{*z!W?`;pX<}q(f;q@z3A$d+7}Wa%os@z$ zk7*35#}Bc&aK4!iijG&9(P3y{W?>5Ik6W4<fKOk??F~?O*VM$+!VLe~Npsv6p_p4( z>Y16En1ZejK+WQo28Mb@poM_O#+INgf)*X1n*1<ZL-wABJJ}gIUb9+l22Go715cZs z*t-Gyw3(5S3FuBs92@08CBK=uiLsHMr7;oHX6Ab4#>7vXfp#yNkUwn(pR7Wg17SAM zGliYmi8%ve2%mMroHhdui-Tv|FsFwM;M&lJuff|)pi^9!b3+EOsXer*A!Y+T(D*#q zGR%Q%@GK2j4s+fEycY^AhdD1~03T$>GHr$!o=2ZH1I;tQ2iZxUH$&(|3mMSZJ;;;b zi3Tk5W}p#oh#Y3%Amq?O2OQk6nK8`JLGmQN;K8z44ly~1zF7`s_5yv{jKv5v#R;7j zqS|gbV?9&c(`J@tdPZjO2|%>)0mUUe(5ZSQ9yHLgOqwB*9jTLM@MuQgE{7b=Smw-- zY(z^tApe7AxWNev%bb~k6wWy_Gd)XCxdG9MmU_VMfyOeHIWze7O)PU}h$&!fb7t_k zLZ353u@Nn2f#sm_fn~-FTttAqfj(mfo-~Ac11;r%4W<8lnW3egg*l%2GKf6-jyW^P z)<$d-W~@eFNsJjY6HrFQIb#Nv#XVzYWI}MyoTZ)-s4^1*O^Tt<n6ZNPXIT*5GiR)4 zU=jC%vlP^vdV{4o1>PQSXl`U?ZfIa`iSKAhQxj8DLqkJTLI<Rn<G#tv+!ECF1D%+U zzG2_ezzEb8H#IaeF*LC>HbU!afQHnMu*rXY#t8DqTTFi#8<~R-7Be+A0d?e!@eHYh z_Cc8%g6;*xzx%=55O-JH(n!zH!qU>%5Pj6p(!f~H+{Dn-#1wQ$n1L}`X9Ls~Kg!m4 z?KuaiS@;gKS!irxWNu+*YzW$qVgzcK;%*j#4(|Z%u_JJplR562%*;XkR8!C;MCkK0 zmIfwzmWBr4i9bV2bF|fM;G4{ju`RN(-T><Py$ARFP-mMgO-wCKj6t0tQ_#(Jczj`O z47zN^+?2rhjuGyDxTT4nsihI<Y#FqExTS%ao}r1crLl<-=yG{;lp|6sz?YaEXA^Dv zpbAP<A21V@p@p%rfvKU1iLrsDr6uV4J>32<vIGy48WNfqz<rIGIjEazX>Mq0ikUgU zJGjivEKST!42&#M*S3MLF+0K5{`(mCN}7*Y5|x34iHV^J=nPL2OA9kRGqIrQX3$10 zGXf{pfX<A=HG&K3ry3fAhW0R`!vZv8Zf<H}YHVp}iMor?0(_0xNw&2KAFhD%#wSc~ zfR2c=v@kLNT^|NIoe|G)f{~$tnVG2}p}i>PMz}lTmgagUphFie&_}5(4J<)dY8jXr z8G<hOF+m+Q1YcuziY=sFmkpGvK4VE$#%7=s+blpAv4IZK#W$c}Xa+jL%fN`h$&#RD zwm751LeIq5*uoIw{5+69EG<k;Ku0_qn3-Fk4&s`CCdN;*N!}`61oFohEdH=C0-YTM z+6`c6Yy#SrhdXx|g694VjExA~jt5%yjME>Mdd8NP#-`wf>>Tk$rFo#W>`jb<mWBp; zmZk=lpeZBJRt(f!4!+3j4BP+hI)_32_=@Qd19Nj@O9L|_3k%Ryn1=W+GBY)>FgG)| zFfbw16~}#%8R&W`6JyYw8|ZtSEDa4oOV~{fjf_nV3@nULR}_P9GCRxGGpqO&D0_SZ zXAhKVOwb`pX66<~phXCVpkop7<PQVTy=|Zamk3mWxNkE9T`y&9ZU&m~K^tzfG&It) zGy<=g0EHHsH$XM{IkuwXLi<6{@f|ZdK=&M(85<dx7?^;@Zt#{?1_q`k2F9S(zW4{K zjBwWEpbMr<42(@J%`vJ#Lt{Nl@B}32h&v;+!D#SpX6M;{91;X?)%t-M9fsyc#+GKF z<YHlBVrgW7XHeb5(#!-j2Vr1@f0M7d5zaw%3j<?4BTF;T>;Oh|nCMxUm|I#JfviBA z;{ac0c7bh`OqDgLCjSYp$x%}k=wdw3tb>7>k-3p6zEg=!KzH4OuF@kk7Hw>RYsm%Z zo-AWyBO?>^+srHtP4z4+j4e#f4KNOEvoHb8jbCJAnYQsQC~y1%M+VB=xUsRJv5BFX zrG>efskte>2@cQ}c~j6f4hsSe65Q9BfiKB2GBq+V!_4AlpfPF-BhV<Ug(+II3VfZ} zCAPkD&sU(l@f$O57+6?X7@LBMT?5b+n)ogxHL(C)BnsNwN+65lzRnDENtQWi!3}0B z*U&=G$imVLRF0XMSs0;?8iKDgyUga7m!<;p#~)087#f?Jn3`BvSQ=Y^wrCjRX_1(i zTUwYKfr@DS`~S>wUuOooBnxz38R*<$w9!vPOFeTVBQrxwb92y9*r;U{_&T#IY{!3m z*bB-Wf5DjpHCdUMni^Odn;IBdf)0YmbCahDXfF)t_;dnexVSGf16`424vKq>nQ==a zLp@^y6JyY-Edz67w2H$NRFPk0Yg6KR35tz>n6Y65+8bqLVqjtcS|kQKr5a~NZeng| zYG!5#+A4y-#KnD?8R%{)(CulK7`y*0jg0g_#}I(7MKv-9?JP&0;Q(J|c8x7Z_LwYa zYWzQVY8*8-jLb|e&5gi!Lz;pPW>Mqf%}Grx%FE14k1t9rNo`^jvDCA)w6riWGdD3X zF*YRBbuz}eaoobtNYC6Dv{ezkk!xfEI(XI0(#+5RG;e^~kp*96cAf3a!@f75B-Ox% zabLZWA^1`+(2>5zrl3hD+_gApnVzwkg^95_p{!w!>!eQ$Lle-(ag6&4Esad|%t6aJ zKx?DSObyU{VJ5`Paf7YcdCL`$FB-wVK<)pT8-kANFf#*%1HPq5CZ?7KX2#~AnN9); z3U?K5XsTyyVrF82#TRCJ7M2#E<*^2!h6-wD9DI-2O}5E=b@xCSqlryuH~Oiopt}P> z_fnb|nVT4ZZac)CF+jx`sG29VPQe&=6>eyzXKZ0^j=2@n(#Tv7bnUZ+p|P2vfq^+% zaSPgOc8jg#9ODvDY&3&o10`b^npqf|85$ax8W@>a7~(r_#KhFV+`z!Z!kEysxC!nm z+|XRl#MIEx45Qy<WT|IhU}SD?VhOs<1@+W%3-B!{x7jQ-TC+g0(Sjv5%)z_zjX+0s z8(5g&tu#zPyCjXxEeY(z1ReH)qrYKcXrTv+Pf+ECR%sX;=oy%pm{^*bgU)|Ny*Swd zd<)7QHW}?M@aoT2On-pS5w|ojH8ZmStrEw#W6s0`bgm@mv}*z@k#OIF0=mw@#N5Qx z*cg5Fr=_tWXsxlKi8*NXn}r2x?f~C{a+l3mZ2#I1j7%JDY>=tHE8wZW7f-HZpZYTf zE%P)oz_DY_6cqP{7ABUUp;i?xanLRUz1-B?{Gv*|#InT9oW!J@R9~kiMh-&@15-mY zJp+<v{wzTg9Ky(k7Niy>r{<M3F|rtfwv_R5v7}@cXE!mj7+LCBO7U<pCl{19F|vU7 zn?WbsFlYYEaL@c9X4TMU{vZ=oP$SW%{=lQ+(A{llqwt`q2KcNXNmG9&Fh`;d!9zA6 zL2bjF+(LK&b#~$b&kfm=tSq3QL2T1Pp8*69{X^#ruuK4gw*`Xd4A3V4Q8c234kYBD z6AI}2=D_=mU^b$K4=C*5(=>)?b2!j2hqwkUh*0Fvf(XSz)F1+d4bs(nXz2zt!v~+n z#6JB8^&|T9AG0y|a8<BVvCjTM{g1wB4rC*I>IZ$-9N3T0X)27fG9jDhV9vn|9TWJ> zAX?}^f*j@^EWra00rWj{5S>sf(dYlbj)j_vZTb&BC5^sk4iW?~otSwGF_nvD0uT|G zRNORYre}oM#fK$;;9fzW0fYn))GJt~01e?u9eoNAIdh@U0D?*bghsRg0tY)ZO3<eO zQ4B@PTaX+Jb1GW$0ogbZd*+NxLCZ^UU-k!)N82-JYz*GUh;0gx1uTa#0|-7373T~f zSQf_&prHj3d*&dDpyp%D02*8B8JiQF0R*cucgb)8HLKd$urzW_O+d3X1_nl!psUjH zY~VKm4I>+aE>t4W;V{8DtZrdspl1TwL4k3oo~5yoo`Ip6v4t`C><M$!E(iEFvwLib zm*gElLp&X9Lc18bP#U>LMxX`NCT5oA7KUcV_-;ryF$RtI8X8&<T5M>7bGw;^k)fUm z=-Md*^ksUM#>RREhQ^i_CPoIv#>VKaDo|(qKAY8ipEn?Hbb`HsGTvqgT8(9B4!V6E zbn1gSo^1mrMwX!E@Sp)Y{Cy`AQ=H>%Mn-yO7G@?Gcd}U;o9G!CTNr|F2(vUYvOt}3 z0^eo!fQ`}DHyD(vy0E1xBTGXQ3p3E2&&I}h4`T)0@MsR2mm;)_!vyDsGYcbQ(2`<H zBV&wChp{Q>nln>lb3=2`!Ir3#1K``t9<r5cTYm<1ow_l*PDU1n=4NKbrltnQ=AfY} zJiT$yGI;|_V<SQXhqx~@1KrDHWN2hzf-$RXY^G;!W&%1Z#00d%2Q4;0-SJ0kPL35O zpxEfa5*sGQ7Dk{EC=)XiOA{kYJc~a~49yLUK=*ACnySHlnHlI}CeRKGON_lJmd2pN zUqEuEmPTfvmAc3yJmA~R9<xmdnq&_0M=z#7j7$s+EG$e6KqJJKpuQ@e=r9B=p|$|s z=|UiL;O>wcnd=!_nj4#2U}ka)Jxdb{OG_goQzK&&)Vnt<!1tLwVf!tr+Yj<bAErMH zO+iPRnS-`wfG&eE!n0bz!~k^k9_WY_0^_*2FEj()%mf;4HO8D+HZjmMFfaq%lVWCI zX<>|3=7NURpRzsuxyT!oJNhwmhlznHcoD9lrGX(Ri{QSq!o<MD$kM{ln9xKf?(57f zj4bs`KzBA_Y-6-EG1N0KG_o)>Gcz+cH8n$>kOg07_KfZIVmt8ppA)bYxuC+w*xb|@ zbY`Qag^@8nZ-5VOwXh&CjEnm|GYew_&`CT-pxaZ?#uZFJho6~Q7+YGHnVA`*of-zd z&+Iwd%mTL=pqgVM7H^na8iTG)H8L^)t!}}0zmBn`DQLTjg{c97-6*EUIBO1LLp@7S zv||h_n1C)1GBh`{1jRSn#fui;`^;Xj@k(m^1Er}+m}$z;%*4Xj(#X^Zba1ArA)aY7 zV@uGmp`nqH1%bT}rY5+3VXOx_aMH{ieHhooL=TiTEkNf#gLXQhoD2xQ&Fm$c3hRTP zpvahvB{D1wKqniT8-R{U1f6DwJ53o|m>Zdzfc7=xFQ{<eW@ce*q6fO4)xr#864S&? z4_umq#?%c!vv<e^F8DUHS8Otc0f#^Z)f8+6m7#%|rHPr5k)@@viJ2vyi5g?j8O5O7 zLugRl6n8al3~IH5Zs5Wwa81nhOe{={3=Ke=L(R~3zk{zcd(E~$KN&nxGZkB+G6d}^ zGBP&=9k^_S=W-oma|<)jRYZig#+u?hjMc)}T+hhT+`tgyNIgpv&`vba@-AZwLrc)v z?kKSVs>a{22^{{%4~mUxn6Y65I*!j6ydwuxjho{+rqS5k!~}E=j{$-6ug!7aW@cdw zS~+5FfO%!1rHQ2;=*C3@3nNp|Rb8lO>Y0NUxxHnpIM@FVlsTq@GY3jj9W>QuVP<4z zY;FlUJQL3X7-Mq-L(mcIW+sFRT->#|G3bU^b0ZUsv*9gGL080DfLvl^VQGwBZ-9o? z-?2IF)LRDf#tbapurM$LoknX0+MsA@gr}u$Y-S2tmtkZ=;J{^b-1nJTm>B4RZZ<W; z%;Tm;dZ1%ZEDS6R4b3bKQ7duqg=X*B(jTin1{Jt7!FdCv$6;h_X=q{yni&9{Y;9<W zr*UWuI#eBWmn@-Fh5JG?3($$nMn)zU29{hhTpWmXJp7iRBbUuhKsQ+%ni``v)WO%8 zePE04TMC|WnuX~LV*>+ALo?7#hX$Zadrk1=4O4R?(9TU069P>tGn{9tTbLN>nHyLb z8>63oZE0$v2il-(VqsutYJ?US;LFTDvgKBp%m&59Y_Km-=FN;j+0EF@$iTt?w4e!h z^VS%2_=K6Mu{ohF<G8OfvoJB%GdBm_i-^%_GBwpRHnKD|F*gLw?xWswYXQE?>=T>3 znEn?~IW-5foB|cHrp5*qW`@Rw7KVm~c$&AyCKjgVprcxi2@EOVzRb+R#6-{B5Ohcj zMy&xlh0@FzbfGq=Gm6$12VZ9PnJwhQrd6N}J{L2C8-SZ3#-LMvK@({BDnAnwBU1xV zO^*M33v)A^Tg@y?O!dr-4UCO2drhXG8)6MDLEUI03sW=HRSMwC%)YQ~IUMc=ijH}h z(P3a=YHkkNa&87XAi~lNUj{b@)qNI5CgudnTQl61xQUsbxv7PL1!kMd)I!hLz|!2n zz}(2(#LNh_oesVk<ttmDPwa}l42&G}*@U*Ejqn&68i8(9F)%eYGcYkUGUHOknBNzM z%<mf;o0?h}ni06&1$5&*uGv2m&^g@}M#dJH8QfA2bh44Dk%_UnCE6$z_*#^2Y=YP8 zHi6<|0cKnn8G;V>g&fmiYGP!F=Tux{V?)sK8lZ{`f5Q;>y(r)t9*hhP%}g;GhGwAC z)r`!|EzK=0Owp&5EkITHceaoB<-wOHF9c@|v`WLm(gd^`6SN4y!rU0osG+funT4f+ zp@li2hM^hmI^4uk&kS@7stHDPm>KFB8G^2;1@&;zRz`y_M)|?^qq$(sT6RW`MQm2f zLE9HUf#)!PTsW~B>#3inMxaGWrl7qYvRr8Q{P7r>fd<QrO)QP{j0o>uG&0sRF(F|N z(+G6poeUS5bC~csK+L%)Gx)3`+V(~8z&>=I5^W9>c|#%QBprBK5WHy+Z5n~aKo7CA z5p9kRI>i9iW~P^1P#TYzp#>l837x3KGKm11wgBtHoP$DKDrkvnCfGXY#02`}CB&I9 zNwiP_NrEf{Pr_lDy@YSh!gA^-VyhI1vzLe|9g=4+Vcx(D8&iZgumuiux(9vpB67fC zpS*<Hh(3AA0^ZdNGZih>fK7$Tp`{uWIc%v0*W@Kd7yZFE3mRby9H<|$&0WGLT1lU~ zga!cm+$A^wU^b!!4kS6kB+)_#B#CeiTCM_{3bPR{SAnxWG*~f@`vfgim4fNS7CKNl z^odKbjZmjznYTo2vqYb_MDYju#3k5Nn2l(mgCd6(IAA%LYtX_5WFb6v43ew<z{^x{ zU-bu;7DPGdli5%YeAqK+k05C2OKNeko`GIEXk80f3S-LB7_<@wI;Duv0J-N6w5iY( zl$ZoS#z7|>!xKwNiklc&EzR`IEv1yWBtUWqo!~P%QPn_Ahw2Z2Ey7_1&F~Sv<`1k& z<3m9)s0p<gOA`uo>y!~_c+J4b(#XINZ_@*G*oCE~p(%k8Lfn^`S(qB=S(q7`g9gXZ z#%s+$x4j#KW(W+849(DcNua^=pKL#F9G?a1T`U1Np-@Iaj0{W-EDVf6n+46yjqncF zf>!RE8G`PY!`~9beVLhssgWLNBoE6XNi)!;bB3TrlBVXypivU!K`BcEA!d$WY%H_+ zsz6=VrQj|riZ={F$D){;8W|gbmem^L8?QA4O(=q{GA9%pIFD<yFg4aQGBq(VF~Ha$ zU}mCcVPFQDkN{2gq4tr$cbWZWbN>EZ4HOy6utbI_=$t9g%6dyfGedlbycipRH#V9Y zTM`&M$9<KVg{g_2G3e$sWAux4EX_>yK&KypW`+zwOW;t3oxxX`{b6%3(*YmWwj48W z7#f<Hn_F5KgPO!9psU32j35}88kiZG8JQ5;t%3V4GYeBwJ#$OY<@A{TFxN9SF*Y)` zFts!S-8+Tq56~?5UpDs+-7TOzz5>%9MxZ{sxg}_=wy6<lF(5vF7=Z4i0Zs4{$Q-!4 z-lpc@m5>IQv-xHgdY~Hx3{8v-Ow29N=432Er@Z`Qdul#w7swwgvH8Qo%)k(I`X*@e zr4hc_3?oa>Fo>n4p%H;mDRbOiZ%_x@%-95U5*d0~WvOQgI;sscn{8@ghB`(FzRv7F z+m_zn1t5Q{!t{r+fe~oeHs~HuLsJWLQ#?Z<MwW&amKKJfQFH?FfqMkq%s|h;(8S0T zb2{JLP!Dt%73hLgQ&UT{jVIvi%o^CaSD!uy%I2%FWOGpHn3#bRt*HUN{WC@upfw5R zMkdAtMnZ63XJ!HFo0@@lm!QusnH%X@7@8Ov8=IS3S{k68EeXEPtdYI*d}0zPI@W-r zLyn6jC%?G3iBS|ZWovF~YHR@7@B#7*=$uL1`NIfwTa&Swfia=cPTcpIS(q7tHkeo% z7@MPSE;BdQvoJL?H8eN3G&D!s3Tp`(L2qLJ6k?+c^2b`RKTt*y3_<Hl%#92|Tg!}1 zP4EppgSN$67+HXh7Q&ybEO2fVw*X(uWDee1iIzRgP4p~42P~PHm>Gcf?V%P|psKu? zJ;|rX8<ecpVJ0g>Qww85OVHAMV{=o``3E@n2^g7!wqYAvm=S7`;J(fbbTN~W3Ftao zjB#6YP<aemFJNe9VFKFRj8v6dg0C}cVee<NnFWfD^;n_<bn%vnp@kW!W-vE2#xpo& zWM*k$VqyeZ#!etQaM$H#rh1^vVSu^#$lOfN!qC{%$jHLb6m*Cla&%aNuQO|9-*@C^ z2q-!>fTII7S%FSMG_^1`w=}ghFvUBgVFbDs*UZ$|%!oj3Zh?Cy+{{eR5Hv}OF~(+Y zt_M1m!otwf95e}wGEHU)zRj$SeeTf(M?fvBjhHPf(E2aXJc+TTfhB0(6HguouigM{ z944?&zykM7xEbhpRYNm#jQM<X3q8<DzLo}tCg$cAsCyPI!Izn}vrD|%y$|GzO<-T3 zM23-}vAL-c=;|$Vb7KoL6FhUTpsgJyCI+Si;{x}3HZu#*36h4E7!4A0OFc_dLkj~7 zOCw7Y6Vy|1Ee${wc?Y|?%Xw{3*4T_KYZ#hXn3|fHfQB;7Oz~|J2krc{v@|v{CbXLu z_ibhtW}tnE7N(XMrvO@l&bkJjRc!zYEYNfUN)|U2V&>>%e}C<?8pt18F#Ta{3cfK8 zbQP3|rJ0#Io~aol6LZix)S#hs0$Ch)MQ(1OXJ!G~2#b-bER6JwjE&9A&CNg_F+(|g zz!H3&Sr_}#z1r0ve{99{2jmz)BLfplGtd?|13c4xMkb)sge@#A3EXIHj{7<@3v)v~ zGw{t480pHwSkK7B(9*)d)YQlfv<Vd@K0xE>-Ru`MesP0}s%_w+3Z?gC1e)Ono#AO= zZfS;heFbPPz}V2x!qkYs#$?>LnOT?{>4A<fH^n%W*wVrTG>mR+W@2GxU}|iFvct?0 ze4AMhyM@*s7Ep9-$BYgm&;g%@MxZ*w(gb|#8}1s=*u)65y2;3tKsy)rZDtmrR)?XP zG3Z)dw2IuqRL|JV+|tCz!qC9L6m`bW5`3FkFZ-$o=fQ_|@4)njA?R)bBXcuT@DUw` z_zt@^GO{$cGyqNW5}3KfeVdtuxv8Fkxv?c^8VTJWW_qBEVQ6S<U}}W6G{F*ln^_;b zt6<D=P<-sf^oNm&8R+a9a|_UA4~EA0re{D`U>bs|Cqioza9@RDVGg<-#?rzVv;Sma zu4e{13kGx#q`5ijt!$Ryt5Evc%ba`bK-ps#X7(^NGqN<WFt#)Y^~p_5@vIavGBU6* z0?n%txLnR0_f;qs=H_~!V*-p!F(#5NK=<96f@UAhEkHBoC=C+uRVWkKqcU}3LD8`r zTXdLPnwpzgm|GZu&U!G#*L^ZH1N90lEKCR`E8L6I%|Q!y3{8zKFwP&a04>}xHZ(Od zwy-ocLY+yr1mA@+k$pxThZe{mdocZBXaG7K$QZQ7*}{ZClf=*vv|h{D#DKtzIPS|( zEX*zS%s?0UU>v?`X=$iuWMXLmI<VTp&=Pgp&(aW7n@?izdlRm-m7S4eFPqhR(6rx# z&EU)a=6qYtC?$=U*eeEa5acoeZ-O^8)H9O8a@U`^DQKyonK@`ynDDfpA!v0lNz;Bt zrsN-5Y7RRP6m8m%*+9<{wkr^GehWO?1fEbsoAv|k*Z~cTgXPd>a6m)mpy6S#9NI8E ziX7T7JY-`QbaD@K7~TZ#1<WZ5_yMYzb6ZAmXQItdfSdx7gG}FH1`B-J2YuHf@^pbA zX1E~sk71ejL%PrpEo7h*sSwwog$&9DL#!bKo%KM!><>jFX4oJ(6*F**;oHv8C;mVY z1>dxXW#$jOUli;S^qD_qWAO2_5IMADgB+|_wk;y&gwVGwLLw46M@90!MflO1SPm@( zB`b(q(Sip#T<JFR2frW>{m@d--a2?nM&Gmup1^}nZc%a1qJ^Fze8(sHMSmdoz!MMp z)E^|apbo+^_lMYFiDm8&ktWgS{!ooY%Ud8xP>BSNOA>c2BDn{x+<}yVv_8311pTHz zW(z$FDH$#i)Co4o2KgpNuq@h+MMFc}xBP+SuuT7%fwswm&lE*W;vuI0%s|Nv>-3+o zo{2f3=|8X<oYQ}XdWL3%_bY-_<?eam3~Gby!)${XnV6V@W|}O`42(_9&CKu(QW=;V zgD$5ccqpSK?jdyxLp=ivLvv8i4y}o9X{2Wc+TmwzY-DZ-S|p9!^D_kX#3!?>sAPD6 zPOI6^CbWZ*OA0oID`=o+U}RxtVqj!uW@=z=f$!K=BLgGQt`5){L-@Plmbkm&7Djr; zpdK3LaDpZ1(gZ_83(%>OmL?{sLsW*K73ovhA5K{;18Sciz-*rznHU=zg08HxFf=o= zu*B0oHw4d085tQ^5^C4tKIjG1*S0jW#Ildc5_HCy31}m$A?SD!)b1<zBD1ONf3i}| zL2+>q92Y2KRG|HCX6DA0<|d$VazhhS+`BbE%P<X$K(`PPhz(1eXYPRd+9oEJ7^AnA zpwU}1Q_x9FpxZxC&f~BIUt>0neUF{nMo?TF0>=f4Ck!kt%?&|KVsp?P??y&=hC~cO z_o7=^T9^~)^H~_+KIR47(*{kiqt9(vn(2WSl!I<6G{sC(mO{)N)7h66|N08b--j{t zH|W|30~64?W6&`%po_e54kZ{`n3$Vbg0?o|ANI7seUF(1_@WBXB|aFVx8RE^j4jR0 zEi4R7%ux@IwFKW|HiJDk@6$q1nmPhbQ>Y_5Mkb({Tmy3p1JEUec)EO`+y`2LZ(x9b zs>#9t_j+^-b3J1-3v)|L^a&bE3q4CC0~14I14DBo)a9y{;7iPAvVUD}+6#(|qu|Iu z@r0p?sWEt8wWXnnsRh3I8PE-8=EjDWmIM~vTHwCJ%)-J#&lEHqVQ$JLkGwTN$k4#R zK+gbluCk%2p{b>r0cr*}0^LPAi{1N%C+{H!Mvh}_LVM6pasq8R0hQLE!(+{iEb&wt zhUSKbMrLM)mS*@5W3({9-2n$(w_yfaJa2^Q5zu;73v&wt&}|#0Xgyc(EoQUXZ#T@E z2=d5rOph3W7N8oL8i5ZF0v$1pdr|;&4UIWy%f2NckKmpdw=~eRG%z+WGd0Kbh>;%X zszGy0b0c$8Q`FTjmPVj1_#Ac<Hd7stM^0dR#L&>(*uvDr5VV-v*ck8GT83su2B2Mm zrk40e3@r?BSL2qT<u3-HEgP5~G1fCPGy>hpW(>Og3T5Mor4gtepUd9muD1-7MNWdV z2uiUFJ~IJSXj>Q?n1e<H@zfor<|d{_md1wo=b9{V-(_ZDX$(5A&D7iyOBONFGdD9Z z1TD%oGd4j_S)i(X9(!J%=3`KVoWc?zCZ=WvCPwC_pj|W;7WfwO7@8V^6o7W4;jIKM za9?I-0lHcWbmgHXmMmhbXJKe&Vgfn@*1{b1m}pBQ(2)9k_P~nI4WI})jU__NEiEi9 zEG;cT1CIuvqYZGL188VsVGP<(PGGkKXs;5kjRKaYdPW9j78XWWA_Tk<!o<?d)X2!v z0By?22sAmqfIanusVK-FXTbhIDSM3!K<7n*T2-JU%<&E38k!iJgLbi65SUc9z<rsS z1?UP80|Rpd6AR1?Vy<UyYGiC^VPOiI<3?FKVrc}b&=<0oUCRFn^2b>${s3KpZE9+2 zVP;0)7BEB5PBbG!P?X?LSGX@Tv#>PR16|7px<?PA4zbX)Ff%f@Fah13WoUuw5Abbf zi`dm7&w)#<b67G6=!$A%Qxi}=F*7%?z_aeq&=_<usF8&UffGh7a9?L;VQHafWC^Oc z4KX9c5_F-Vfsr|AQ-z5+%33!|@P%fJ*>m@BP6tKEd2ocFmRJVn7UrgwCWgkKBP)#Y zZ6gKU>I=Ha)qucc4XA0Lz{M30I+DA%Br&(3iBZtd%)-I~v`x)Y&(Pf1+yvAh=0NQC z6EZX~G|)3QGBq|cHZU|ZL_1@|5`3fC685`EuPQ<QxPa*o&`qF5W+nzE=B5V5CZJ0S zaA$NQQ)3hG{fh(=7S1}|(!c<8z_KYQxX}}qp`o4y==e!c8wqrmFv{$JF=(;dQuY&5 zn>#=y??o&L3v{rDv8APvrJ0EtC_M1g=|%?Tpj*|<Eb))3gYJmLQDT8^{4z5z0Ub|@ zk+2Mn^$bnTjEq2=*~~3bPd2m!-)XjtooDAY1CU29VeyECv4xR=0eI7(A?V;<JRSkX zxS6q`xf%YoprG}tI6Y#d2f9YU#LNWKBPM#_qiR8m_KXY-&~gZ<PG8P0ToF+LN?DgN zQx<5)pE;<9ZU(yh!V+&+%Fxi%z|7FXzyN>0*1{0yJ>#IuHq0z6L0t@tlw}5*T{gBf zhOS#cO<ABieFghNFZM^E2)TkKLO|2S;OfxW#MA_I?Jn-V6sQt2Ft#uua3loi=6ReE zVy0&TK9?GFpDbEdH`lW?wJ@|aGcz$T03AV!JXm53s?%4puW`3A26^Nv7LS;lnOGW| znVW!GC!p&O@uVyR(C%VOBTI7vokHCAqF5T3>zNsvnHXScWf@xPfiAZ*GByR(CB~=& zCg6)vR<ZM*6|n?)<Qk?&j7$tHK^SznF6bU#JbN(>K(n5pmEVR0Jc9db6iWjOJqrs% za3cymX@L&nGByTvpG}R-K<#go7y;GltJ#-l{?7-EHe3gfHlXZOHUurf1l>bvU}=GO zU8@18T(dMVF(a@X#sc@vD4?4vEX+)dEe$af7U&=@Lo)*dQ!_(D6GKbXjv@GJlr`+B zWjo)kXJ_QN!Dh7*G!wXPGk7L&*UL3nX97XPZ3dPmdIs2L0xdx6lR$$4dIsi%X9A5t z$BU3O6KHHi{!AdA4S*(~VO{XF9p+S^F?{+BZORKg!2q4LLz~h8jl09Op^eEi8|c9= zDa4%af=i*zb}<`34&O^IDAmIpjt9@Kf!&We*JT9X+-OPK{y$KdfF};H%mc!wWU$Wz z!e-^rf(0C6&>0Z)?SCk9Yv`93LL_0PVg?Oj$`UPXz<~|ZhZZ*AAceUGEo?v*!Y5A9 zrvbs<fEtQE3ka5j8j3y%2-^M!4^*s&m%<FimSkXZ*wPHHIY3KGJxhd**un<pRJ5>x zBw(18Xn_L`RH#PmlYlTu%-n?7|A~HfDLCYyHj=*m52g`Y=)mN#r5l(_(ZUAee`v58 zqXiD=!aH;Lg^*Y#0l~X}!C41=5)d48Q1_tE0iwuZmNoD+jy?m3q7P5X!7~4cFcVwY zz}$%zHemZ`J^LqyKKsXNYyzrNaGzNUkw=>WG%<!8P>nigm=4<i#{!nam;nTxu_OhZ zqr;p51k2($v(&^=&&Yz%t%VRpQ1dai0Ge3pnG>D^1gnzi-DC`EpWno6pF^(rGX<Sl zV_<A(Vu)v|!@$DA7<8njIe~RZ7DhN1s)H|>GBz>>UBr$$2WV(uWTXc=t_-x+3AEe^ zrF{;*(QGYyJJX&cpw{3m%+?_2k_6BUgBj?mKMO-MJVOcw7RF{~;3E(S3?AaX(hPLL zl!d7oX!HZ4!vs31z`(-9+|1O{(9qBTwOI?k(`+64_p8TCK&`>s;MO4Okb*gATGrgy z%)-dj#LNueu@(mA;B{LT#-;>jJB)CyRR`TLWo`_*aRF`a$<P3N`-VAaTM1}^8fw1} ze5KiX_La@=3qanu1NH{WkQ-=CDQJxz=t6FD3w&qD8kn0Hn;3!)up-nr$2queX=tox zZeVF<VT!&u8g$ATXlsO#CFm9rLt~VKQY^tYnr&crkL8vFC9Atwl9h>tp^>RM=#C)J zSw#32s~ebEnwc9IgT`v`kBs2H(ah4&M9<99$jHzFa|qN3)PFU$0A18>VQ6WJ<`Gao zd?UNk)SnYT9=V6bBSzpUaswmKvP{rHn7F%r24*Ip+u<w;9r^;g&jDBe6?DgxnW3c- zmiZ?mb3M?0N)tm<Q&Z506KX~Wb;LKZf6Pcr02NsGF$*lv=|rG;6f-kJ(5Y;e_zEmD z17kzbhGIfvhqx~_voti*votd?H88`HvMlsWL1QllX68mlMyPYl;7iRmvkQ6u+6VH- z11$ak?dvl%G_o`^u(UKWGBLqD*<oO6Y6iOM!jixM5AHk7EDb@|o|u}0yn)eswbV1Q zFb9?FpuQ{W#xqOst!7);fA>v22ufHFF%y;%=)yyDQ_x{NW}tmW_`2bypdPFV=m04E zIm8&}#xqOMf>1L9OLHuf9iZbt4UJ4Kjg8DKjZIK5VYCEaY_^r%IXxPDndBpIgrJsK z=4OVVK{R7?Lt{%*Lp*2DfqLM^28KqKrUVA6a9?a@X=I>hXkcn?X@J=eH#XEWGX>qM z1WMxOXbbPbH=Au^zo5an29&TKWATTvsez%1p)qLE5_G&0o{Vl{2)d=z(45e0Iqr+i zKo@2im|B9$3XF=-*htUJ(9jfge4?STCF&(Lmf)MswzHeLGt39oAWyK=AO@DEmWCD< zCZ@&~rpEXt%ngjqEDTLdOw5c4%xW4N<2t<*bYYg6fsus;=IpGoi5}<@Vgmz9Gecw0 zzD?xO9q`3wJJ{K?75PElcnbCgN_}o*YHn;~VQFe?Y6-dl${5dr7z1M?1542Lq69{y zao=oa2|B&o+`tkv6M^2o0v+FNWMpb;Xkl((Y=T-`fp0e3$?k67KN*zGpJB=7mL|p~ zriRAGpsLW^2ycaMWNvJ32Ac06<PY2xx{;}#k)@?6=x8$Z^2*pu&%zYEumCg%jW%Ti zzS?XTyIRxBT_BG<$MlGyxuv;*sktF&@0yXBCEf<Fk&&5+1?aF;0u4oDoU`SYpo6cC zEJ0UfW9ARgh@yc7s99}bWM+ukPy}CZwws;lRgDeEBQLOc!~!(Q4w^m#H`4HJF*N`k z*=h<}97D(>I2XQI8i7{gTNoLdVdfAM13eQ<(4G}@BO{P^P-=8jP>sHaeQn@e@KNM1 zF$*jsP=W-__!}Ep8e8H`S%#o#4kJTzLN%c=&XsSL#s=VRji4>L=qby@5VWxobbtuR zNodQIz;~SOWp55&(hrJ|S6Cv%0CZBbfw7q>=xSwCQ#|K)7=UiwGBmX`Hzt%tEV*zs zu|U-XXt9MQmIyJ{Gc+@{Gy&Zz3)*Ia8X=(R@_p=1a^_n>Mb>L@k%clKZDMX<U}|b& zXl4Z3UWV5jppw_vkkAer3lrQGy0NjIvAMZ9XlpS>e3<Bg)+mA|9KqdGRBwRB)%UZ{ zHnFe*RfKOa(-mkPl`&|Eh>5YKnUMwVg-Yg@mKK&qrl2c12;>hFL)_6}qGxJsYyqmT zG5les2WoL!8kre_&%j3U2l$q=1MITi3*$k{-`;|kzoA5jv5|>^g{6rp=!6ktBSW0+ zM9{4ap!+&3ObPh{cmLejRL{)Vz|sgybJxUN&k)onH83+Z1?3*(Y7l(I*+KT@ap~tk zk?{^387S2tXwwg<KVV{JZe(F*isuer&?K9&rJ1R*A%UCIK?kDa%p7KVCdLLvpmPw= z>p>H9J<y>Vrl!W0Mkc1H^&t3eltb*@*Ll;L85lX<vkBF4sc`WWmF9tOzJwebAq={- z&eG7*$k@c()Wi(5mm5zmHPbV(G_x=^F~%tWO)T^bOe{=5R|JA?I6=9I!qN;h*L|3M z%jVP1LAmq;IG3V?s1aymo3RmS0fL385$G~+Tr-m9mKLBJR?G}7G1nd#a&dF9CMA|6 zXEZS~;>o3Epxa$R#WOZ<7@3=xni_-dg|tAckHOcQ9AST~uKO9}jgOe#04*9aGBGx? zFgG+YGq5zoJ#Yg)VAI6Zz{C=BVim<3crvNEo`JEYiK!{(JhzF39%xOD8R!BZOG8uC z+8BJh$x-&~1$)73&_97QDN66b$i&zLbR`JrfKW3FJV#KOTbi31m>F1rj@?4<1)=x? z=L%KO)gQ*DhK81y%Ro#l^ehdGEI?fob8|Ce)G0hOP)&S{{oZs<@Bss#!3PYWdcw@u z(!#>T*wEAjwDJdc*BaD@G6J<Tu`Iwt@q{t%^3q%nwDJ;kc>_jy2|5?nz{uFr!ra{4 zzyNiq1AMi~arRZy8W}(->I-IyGBPp+wW2{MB$$~Q7~wgj*WA*~)WqBrd{rpkxWK)Z z#TZ<gfDQn_%ovuS8o|&Iw5Gun?J#jm@XaPC*mI7=t_KzSUole@Xe$A@w6w4^F$687 z$DO^+K)W{$Ele;M45LH_&a)mYjX^7<jEyWY7f6|a7D$<Z&i*h4ZO}$bQJ^~bB)iO! zxE-K_hQDDRG;9Pp*4@z9&=_<Gf(6clhRrQO%i7G1F}LKScma1q+t@<S%m6f0hq>y` z)Bx0jGXyOxvM@43y|>*Ge5uJP_9_3I4}j9scg*x;U<tZL%fQSWv}YG|x;xGuwYjA! zNR5SoA?9tVDBi%`%r>^rvjnvg3@{gSnu6~80v*`~+Q(vm)`J6IYI2(WhP0qIC_ViE zrze#9!Vpwr85>%d8-Z5gn_A$@-QeoN%*dEPK?@3Ml$B}%pwUkY(863$7B;rTtn^F` z^vuDFoGpzk3_<ISked<UD^1R@D__my2OWX(6SIUeG%~TYG%zzaFfcR#Er!Gs6(*pK z0Ol5Eh8TxDphN|psvDGlLAR2FyotI7#}u@c$sByBw1I_*C2AuAe5J`*cJ8SuXF)0I z7iNkAWo=7SV*@iYb4xSOr9pVS0lM(O7_@aCW9hje7Z1GZW-`RNy~NTOl!ZZ^4U7`X z)KJgZ(inV#znL*;tQI9QKnu^$u}|FGeHrA9-&ni>+T#Nn76)Zpb4xs{AI&X|L1$Wl z&RxV38_3?kU3Z&+a<PR8=u#r|CY`CF9%#RgxdEuNZid>B0^ewIo_&W*nCxzLMvgyh zR$D;}SI&SJuFRPHa4pu8t1T@oj4VKFm&~!PT(Ja=1DP5bnd_Mw6JEJuXsKsmMB2&~ zOG;L*K+mAY+^h|n-3KrHz?^DFYyd}_Oor^=gc^x$i3U^(`&=^EHneGW&~!Oyxdd3w z40V|a$Tqkf+Eg+~AKV9Mv+NK#s8jH)K)`l%HONfx{5zJVEATmQ^rb5(>p{?h1!ZS1 zsY_Q7%K@l(bhQzDBf244;6MTnI(d&}?Fu{qu&iByU&o5EcEuPp`wlY{Ep(U-^xzAE zu<u}pX+%pm;H3o6RTd;~U<a+|0!K2I4eW-n!<n%hT@Bydj=pvU>>8*`Nk6$7wvq%b zY(OiC;8BHT13O}yHTnj2RGpZ)$_T#I+!$-Nf`%)$)hib8=)$sk1#vh6`sx)>%7R;p zzI+AZTxjs2Z(#?g5SScV2!Vqg8hR#ZWe%#1XsHKeBdBBnCjt|+07A~q=*L%siX?NX z0a(IffdATEW3aq1$_du2pi2lr2}lsj8WyM|#v&FIJ!50si&((2I2N%OnCclB5?aIp zQG{y|i!tcfCc+!pL8_*<t(gF7i2TLU5CJWW1)b4rY783iGsis#X>Ms`W@%t<47w%` zv&V<r5Wzi01{&@*H?c6ZG{IOi0XiDm$jrnTbpN3RdP4-%{l36{eYTt`$Q%E_-azes z8yZ-E4!AV|-Iij8=ZGeAOCuxD7=o!O=J+vcs}Ohp+r&T*)aNoZ$I{U-(gSS*F*Y;; zof~O^+W!XMNp_L_ZgYtSXsGW$mZ3fa&{<g~mIg+KhM+U$@Qvsgnj0Bdm>Zc{5NO@v z?tq(sZXN@zgU8a>0G-ihXl`a;Y;0fzI*}Nqc?%i_zr@Zayd^b?fr+DmU1%rzB{^n> zX5eiYhTskp?uk2dOVD|d29_q68y5_@W-~1>OJ!g|PFlF9y-W=COpJ_84UMrzilw=! zp^-W0Qc6>_g)HE!$u6_Etklc_rL9JG(4EdGy+0!pLvs_*$+ecICKi^a2Dmp-n_C)~ zn}Ck&#d4)3YU0A(88<Q1GY9RHz_?)4&;WGoxP_UashOFni80zT7VzC<SJ<-?E`9}h zqX~;Q%*;XC1wg~;pev#*a9=QLZV8%HvoN+aB#^Xl_r*<&Km)X9hFG@jni}hw85n>L zt}_80uZ)^Sz?YL<W$&%s2);+EnO$f%`X*{ib5J~3n1U8~85rS<4bW~D6VS#kY=b+< zsS5X$mx&SRjC4y&11ud`V?9elBQpaN(7c@i+Tbntda`Tm_K#ncgQBAa937}7mVt?> zDQK3+z{t?V%o6vS33CfeBMUQQBSQlNj8$H!i3)dr+ys=JEkJn^vm*;SbJ5b=!pPXv z2s|u+oYTR#lU-+je|PCSkT+T}y<uo#Xb#$mYX+Kg1|8{*bEwV2!rao_9CR5Q{(dZ; zjU*;UdY0yvX2!;tD?dy@b4Z4ufigo=(4p2S6Gh<L$!@SS9c#-56})Yjsmd6%v(((w z)Y8Jl*uV_mQHACfpxwHr#+Ig-TS-u&1J6zp6VQeXb8`!0%t1p_(2cL4$pS-5&?Yw2 z?V;e?$!@Z5Tz#n$6dmnYqQexl&Bnyk$i&Rd9Pjw8g*oWTb^`+g%p?9#y@97T2jyfV zBhdUH`Z%<ysUGO)KNC>(WM+VRsih_Og0freVTT`>fV|Ox#T!Q80vCKwxS<igi4D;5 zD+?1#6LUhbfu}kLWn}PT0?f=|s%K(mWCFU}*WBC$ZTJ&>KiO^e`578>L8+<}GgTQG zSsELFZZZcQM`{S#4Uao_m{}N`n}IfTVN7eIMhBki+(ggF$kYt$(4i^ll0_rXEGuYd zKI$+J_=2)K>>DcHvx1_d3mhG&HK3V=iKT_1rLl>*k(rUP1)fHtg_*I5nW2T58Ro($ zRDa;9$w67!%)r1HbKRgRXgb*3%+TD-*wh^L+<i+6(1`k7_KJD(44~-f#*7X_(DaOj zg@J{!se!4Pu>qde6{s<30$wkPF(HiV4LlV&=rkZp(9tlM$qKYZ(a;!l#-<VI3=WjS z3VhkgJ@&&7LIpu1xjmSzD<fk=Lvsr=3veB3W`U<YVqt1*W@u(;ie)|+)f;$fa!^kN zR3xGwO=D<aYNlrn+NW!7VE{Vz6xA1oLd+cZ*=KfbFar&$_p*bIo<d1f;E`O=f<_ZV zb2C#zLkrxq^PtW07A6)3<`|0xQGEfbq_GdGo0#gEg3gG-j0$r-0}EplGZRA-Q!_KP zJ-XnlP9CtYU^}rKl%)DFla!IAIjA{iYH4U@YHnzT=V}de3ln2d5n^D1xswvr7kH|1 zQ#}h)0~1qAEcKtco{52xfw{4n5$NzK)bm3uK{MhH*=PF*f){-BWBS9;5_AbGXbFU& zg^`glo&`AO7RDA92BwB4Mwkbop!fsNN>mdwJwtO7(23mG;=|m?)WXQX*uV%>)1xLT z(75^|_K2CwT|p()1k92O)N2A=ZeVO?Xkr3dVT^lv0JOo<)Xc&N%as(U{xHP3^3epe zLc!P&%K`;c&;kV$&@~K3=H_TOg<FDeI(f|AWZYE>N>&rGM2ESNk)?^Dxv{Z@rJ1=g zo-0DkEsQKc^VTM&W*93tQN4ku9yimoFfcYYG{#&y54y|6)C9B`-PjVef(11?K;7~u z>=PTl3xc9!5|-#NvIJdoVr*h)XbQTd8}~u)pa!TV=&%(_%q2Le{xHTJ9p-vQ2Bz57 z1)EyvnVXuM8iH5bq91|+zUkyC`?;UyLLhHU#^wz(OJgI@fi4E7pewrZHP#J5y$;YV zH~9Nbcow39ZhZwc#w{%|2T3gT3@ywo%#1B8Escy(kE;h?bn=WnojD{0RN_tnm$)da zp$seyA^YA<KxGl0PPqk0otdQ><|RO=QGurpx6m^%HMTUxvWdaeQqRo5)YRP2)WE{T zz#Me~&=ORMKW8@z)?N-;DmaxL^AIi2#am|Jy&~Ymg|8Af0391;Y>MULHB^7#sl+Yx zOiT?y6O|Yx73g{(1JDg57M2#EWglF8T&(fMC8-5Xj4Ys|!i1PPUa((M{PP=Bi%$dB z;;8kXDX6h#VgTAY09qYvhNu2BFadWnjqtY(jd36DU}B+XZf0q0jG3g&4D>*2r$Nia z4a|*<(0l=^#b2_Al)gO(DygP}ODdFZET~s%VPI%rW(iuYVT`9O0=i=ebPbh>If0yk zr#Eh?XJ}w<X=099|Ct%+nVDLeni-lIn;3wW@1Vv8=xnxE>;ew&nL+-T0rm$<Y#5ms z7#NwGnHhmLxPg}0;jTE$ElmtSm(*Ke9)E(GtngIimU<>8p!-ZPo495MdX|=!CMITP zpf$=CXz>B6$X~Oc?@K-cDyn8;7F9+Dpr)ZI=rAVG8SZ%Q4lp;j04)bF2JK(OJDzKT zdwv|WMbg69%m{Nh*UV7Q*x1wvbUU@Bg@q-WH$e6H8+L(cHEU3G%mPOTYO*pkH#Ih} z1g)C~oeP04S%D4<0d>&`^kea?KQ%SbGc*ESRe(8kXlAHqW^Q3(Vs2ytTDxhA<`2-` zvA67vjapkknS3@llcV^<$k@Wb#K6+R*v#C_5_AL%&JG~x)HYK?&?S%fGr0-w#ciNf zE~XYn=2&9GNY4PY76)`|fVr_DnlC`r_&fG<2jmumVq*?CHc&E$p$X`SSxW<RQ$qs- z6C*?1C#;&AgN8~?%|J)E;ZIb!t8vg>m!Rw8Fk2&_8^A0;*TEQ?f|hj{qxl1LfXjP! zo<(!P=bp^PQg@gem|B>cT9})GTFR#QTI=R!mIj8#=4PfQ_y^rgaQDYe4fQ}fYC-2j zq7RRl8R=PowxxlN2Lc5snnyt6>mS&2za5qbMaVoX5n^Cu1X?U_W?^P-Vq%16hYx5i zqoswJk&z|l!he*~$^>_14qhW-XlQ7Hej|mUftj(M5$N7D3nN1l&`l1gr7oy4|Hy9n zc3UpUAM>&J19U{7fr+WPp$X^~Qe)gZ`OM8tK|6sAjLq=(0Znk%<)%h@hNhMV#ulJ% zBI=?fGh@&y7&B8N(B*E1W@f1I0lw+v6FW=NPcBfSWC3Qv0wpJN&@7sTk%cj+YmTS( zFa@122U>ARz$3W3<fcY?rbeIw5=#yN?cN97XauSY&5h7K0;<kGvs;}^$pJ;kLU4qj zlvjqPph*Hy`ww*f9lma$xrv1ZXxlEq2*F*Qn;Pj^fGP<r+c3;b^o%XQwHRotxEWfx z3%={*3;VCd*_xmTS%euO#^B1;+}zmA1a!I(o;~g6kkd&)YoiGiytu1#Q_zWJ2B5kQ zvz2I~XKr9<X=!W@I@SukeFeVk<STn%@dE=;ge(R}2ujgw0BQ`FSr{0Y8Cn{ffi|b% zu0f0~%*{ZTSz+D@i;~k#ao6Xj#(E}ZW~Nw<ku)>aGcdF;GzQJrSz_i8P=)@DeR=$* zo1h3;f*B!(md2owN6-+WnE_~*9iALwYz!VVH6k$FV~Tsho2jv$xrHfc!yaaYnCclD zn}gPx8ylH|u4qFkvJ62r`gis#DZj)(5wa9BLJW<}Obv}qEzQh8TO>>^aqsal2W{6d z1|=**j6()cBLq*CZlVXe(9sM_k!7l92D(AV$j}&6qM$Y0!H1^*U@txK_AkgE%dq&v z*c7z&(-?Fqr=giS-iD%)G59<_b7TB1cT+rdx(R6Ky160dx_i)F!=S6|j4UloER9Ui z>U8j_=|9<5C<lP6!sXcf0lJyW)W8(9t`&5B4xWSsTE}b*I#Pi^eBeIw!PG?09DGME zX1X%d1MMC#F$OI}0BuP`O;?~Q{TKUQrDq#J8Ds^P3}Rqt2s)t5z{127w15)No-1?E z$$*w-W)=jhbW=Q4x~ZOliIFMjOmd92iJ2bgSWfWp6KFdGT3raL(|@yH;df2}C9IX0 z5dxaiG&Ki>1*l55Fvc^_4BCZi0NOx?zvMN=Q>UBi8H4UR#j^R>%uLVHz{1?p2y_y? zi5Xg>7kqU3A9j_{Y1=>%vI;XoK#LMUn>Hbvl|b9NaF@IW#zuxFCZ^`b_#2C+c<OXh zJu}eSY;(-*HK02&4K2(-`vJgLS))b>`1tg{>{Sy=CW9hmHI@hg9sO%$3R+uZX=ZGW zZ-b2)c=v~~8KE(1QwyAfaHghuplMzM%rzxu=6a@}y-MZ=CWZ!vrf6*w@bT&Y*nj+3 zrUZ(RHJA}%Xl`Z#I)KL1*bKDO2G4DaprH-}12Z$wk`KJS5K}yLIw(I|8k-nljSvga zv5aOWCYGiK7UpOX0_vmxXID9R1AMUOT5yD*G_s6MOw7Rxu0j1NGYdSUiJ;5cEKQ6+ zL*aP+VTODAnW-6QxrM2v36{p9g`S})=*l`%Gtj9%=n(>{(;GNe3p7}OB4izAgn-;- z2|5eb&=Pb*E}jEQ&CNj9;+YwO+G6-Uf~QUg-RNM3b*ByJzE#kDi^d>_7+IjzAx5A& zy^*8wzsyvSN7iF{#LyT#J7aEPY-(m{U}=tLOc8WfDEORp0>kZQxQE+K&Gn3oER76I zunaeVZn-tE0MEf#ni`{3>PDcBdJ~8Aq?-~Tk8Hs7h>?M@r2*)|RucnrQws|`Hw>7Y znH!lJf%bV~+o*!HIK~Y3#JQ=to+;=8K6A`%)Ml1?29|~v=AiTSO^l7vhOvx5J@sY| zVfEHXkViIRdIYrC$<)Nu%*e#R(A?b66km*(nHz%^Js29{?@*cH>8YE8?hiMzG{cfd zEcHM~9UFoM4nS)X(DFK{T5sX7H9A!aDttF#=5<pG@T8xmG3as|BMUquCuZQOR3i&Q z%Y4l6)an-CJD^Q0u#{P#yL=4|K#Lg+%`Gv?EKsf9%F$lG(i$|7wHZ8+h0+fJoh@bw zI?M;O#Ldju0QUvT=AfBS0|QXOfIq97;jTk0^i0e_qcj*3Am#>o2H+hemZs(==);QO z)6?5H%*r-{=cBfOM@LagUPEKh$=1derbeKO1m8LaGgHvP6QKD6{HvABaF4lzCY>xn zJ1Q~SislA-#wNxV=EmTinr3LZ1AKORJBNJX^fjPFwG}f_ftG$68yi}Ju7t9{yT8%Q z1T_C<1ln+lKQi$2(m{jn#^y%Gn0*k?#mb<CwB{Cu2BwB)Ca9SMe0F*VN7A*tIUs** z!}Ny<XyY?zTe7hQXoEkVWhG{yBNf0a;qbSx%<xp`mU<?Jpnb}incUn!&(h4?)X2ot z$O3eVJDNX06?!L!pwNuvpv<uyoH<Y?){Koo69=GU1`LcrM{MId0Up#nH!-!aG$61b z(Hu{84$8-7MxZ%N^oF}RXuQ$f0<>Gq+#Gb+2ucqGd~kXfhm6cuW>A^C1524}W)9lI z44Tq1Ha0ag!L!TJ%-GP#!US}UEdEJnbKKQAX!^|9+}zRxv#c^V)HAiP1hw@n&CSeB z(Ap)&pz6Gv<H`Ctj-cq+362hwTn;*105oN109s9LfajPRb2D(V1I_2)&*kR0d+25c zdd8-p5q`|F$`G`p+|<&{($v5debC()RG0T~Oe#3N9h5nCVP+0P@G>9Jh&AZO7(9oy zfkv|}L1*(A8)KYuhBD4zj=L%cO`m}dIl$5;F*ni!jWL*67#SLvfkG2CS%IqZUXH_s zn}30l)oyIb%F@!r0yOz(W@2HAcZn!yy|9s)v57h6sp+U5!CjSurq4j9BAR0<tw6)3 zrj}-gpnE4kO$t<xSO_t5^l`K?#4v)U*7jhjJS<H>i)4%~O+cqt8sV9fGBY#)O;DH_ z6Idc+j(c0VnV}wN781+4V{_1`sfD4D5%?S?1GL7jF{mc*=U8!OMGz=m?FFYR)SBGb z5Y!j}ZSOTV1TBxoJzxU5g&lOflA#5GY>vAs2Th<En3@=4HWAH1gQn&NpxJdZ&`<<w zp$k4VeFDd~**9`Q(XkIRI*d(>3=Pb|MTnWPxf!12V`c^hhKA;*Mws`^p{6R_y>l}| zJxkCO3YO&z=AhdqO+cr$85w{Y)o9)Tjkr(b*wmy6zDsLAmh52yYE~M94yFVh=8tbt zqN$~crGc@LnGxopjHn*LU74F1>4C-&jIb>AF*nvT2hVwd_Mn@i_dUR;uTJ9l-?i{H zD4!p|;t@;G)VwKZF@z!LHby*aeM~Jt=eii1m|Ef=h%?7so0}QwnVK4!nq!$eFb9p9 z8XH;~o10o%8d{)rqQK{`PUcv?wbC5qk%O2XF#s*CG&eJ|G_o`@16?tNJA;^7fJS{l zoq7Bj!~%DP4w?!yGXvdbj@e8E4Vs#RiW@^y6H5cMaR%@StW!8#?mhya4|52dLr`<N z1^75pLrY6@12Y4>13#vqeNkqn#^xsYhvF>oROrTfhUTDUcNS>3{}~#XgGNn3Gk6vj zCg>x)CZOtkDu+*v5_rr1VX!w)s&mlEHlTYqj4Un8jX;+R;v9!FH8-}j0G&B%j(^pz z1)l2MSPyiiJC>FC=Aa={L(qYyrUu{(y-=zT6Ht9VjpOsOp535ibp$h6flo6u1)aZX zXkiLEf&ovmG6VG*4J=J9@Ha~=@Kor=dKLzt<)By!UeK7Sk+G?Pxgltv0c~y#eEjNk zj;<$fE`utNqnH(l0cZ-{%*YtDEYJ`%eTIACk}2p8I1394Lh*s8J~z=b1g~Gl98WX{ z4VjvmTY#?c12y5$N?uTXK7%9gX2=RqgdD?+5Kz7_v@|j`H#0RdH?_n!#$ak{VPs+o z+LedDg=K-eZ*FD+I#$aVw3z{;;cf~#R?E`Z)YQPxz|sP(y$e2mbtXsg>w^nG5po<e zLX1Giu7ZmR3u9A5P=gtF4ly;dv@kWXG$XKD#sW``ZlY&y0;;hw%PTWIBTEYdV+%`D zOH%{%8U%d&>MV}pwSJF5{x|{l2TDdaGB7nax3DlYu`o3<GB(FEvu0{yZf;~?Y-nsk zAU^O^>85%HrsftVSO%}mK|`jNCT519Q9&~!wC*|h_|@4Q9lZ(PKnd$4wuEJ737UH} zHMTGYr5wB-F){(~ULmk3+yYOPZmMT&ZeU`L<-{0sGf=a|0JQE8bUr;=P6r>rI)`JE z!g273`zdT50WEYhv9vG-t-b)Q@4%g~jLi+rjV#TL%<xy~7I><3Q$5fyF=(a*BZrvl z85x^^R`!{hgO*~UW_9optaCX8H^w!BQr2m3%0j6LjV+BqCo&pY8k>O5x;4f#oCw+` zU}<1sXkv-K?6t%_iw>I71l2=WiY#+IQ&UhXH#9Rgvou3%yMs?)oyW1WLZ27pk29G5 zFfuc?G`Fy@G%*J)3otjwvt9;tJF9^a=y*oF13#8{Ds(eF@J16;%yDXSb3F?)W6*7J zX6B$fYSH2YRHe`7;JBp83~IZd#jMgn17F7GW}w!UnW3Q>o{<Jq&`pe%p#5z4M|Ul8 zkGGqd>6saUu1z$@?4nzMHX@jqS(uxeVk~|IAHTYQ<H+u&6QGQK4l{p%hDyxL42?kx zVa&`8@Xeu{8k!jx8W>v|5!e@HiKj|8)3XGv!^5%|z}!O5#KP17bT+Dmxw!$_TqpSa z)rA~cx(9xMJaQh3M~uusYfeo~EI^y}K<kEZXLLgYa|2T|&>7zN6BeF2-CWPe)DV2Y zHbzFb(6cZwvM@2WFt9W<GDk0ZL3R2f4(2*;a0a;m&LAjNh%u-kZDwj_XaKsF(g<J4 z3tpcNn*YLIg;?UL(#`ci>mm%WRUwvohK9zVJIO$ItXrV_1Jp@h%rW;o%Q;X6xri-; z7#M=CkF_v1Ffzisz7G`Z=9UH~CInU^TjHKXH#66>FbA#W!d%~HZmDNtWMOJy2&#`Q z(aJ0E`KwDf;-q@?K<VldX1X%4G%+zZG&i#}F)%l_1dX}iOjn><5VWVy(indQVu`0p zx6m`RG%&|@7N5DLp1BFA3ISbKYHWnoCj_6tx|D;<FyjuW;Jpk^S11(-=&pK8V>3&0 z6LT|T3v+zC&P^;VO+bw-Q&aq_Wh`;ep_^IgnS!oHz^p(l4D<|4EsQ}fF*dYBAN&EI z!McoNhv$x?pmcQwoUTy)0onv(Xkln-X<`IA`4rD86BE!Jx0$)Qu_=Ly5VWQT`>s1P z3q1=X11u+oS{UdVn;RLL8e3YLgO{(O^rgTDxGv{dFZIb0l&-E~rYl2Z&@H8)V+t$` zj4jO#@XQ>5CX!6S+ncbYD_;01aLk4Vc>3s|Bl*lNEV1lJwE!K;XK88xIx^J22yF%g ze1z)?4t={rdZ2W54KrPV7G;|lTbh`I1`JJ2@g2Bn0$Rsn4BlRgS@5EG1W%Q2sb^*i z+PZFn(MPv11Z|!&1znA4W`x#K1fSu$l0)wYJ9vfob+A8B%3VVva|2^zQ$sUzGZWA% z4cvWO6Eh0~(C%Gx%<Hbf`<b8z>N10_|G{yYuO(;}(9#5SS0j4;VPU8Ta)7ZZXo0k; z30g%6KE`zw$J{Sh|7`@_#K>;78g!uDtIeRB7+1Xcw*lLMcAyiREetG7^^DA=WVv|q zQcKG7i?a2KQj^P?7<r5h3{5SJ4Nc4q^(+XVXJ=##I+=)%i!C=bH@~Q|iILe<&r(X3 zOAvGgmL5b<uc)}#*Qtq--N@1eG^9fId3I)?Lz}=y#i5;N$6}yo0lzj8?La&5c}~#V z7BSDWGlFZwcDNMu5IMB7rI-!$Ku4j09fEnX6!_3Ku$&pjd3Fff%u(gQ$6P^eLp#n6 z+5K1!Yy$-e_#7+r<LscWgveoriGh?f7eo#-Pz>N_bs3_C3g|dH(3w&YooL|#k%S)B zg?<wwigVCH21O1tWDrh83mO&!(Ajb@e_#z9s3iJnb|9z1Lyn~5>_7*0z|V+73mvdO zU^Zd~4mf3iL(T{-*`R1d3mg_pOFejy8=-{`C<GAxKnotQsnF;!LJJ*aIg*dFgPMuu zB1TZY0Q->Cix}Z44$EP7h;TDT3mdR6paD+WS$4*t*(g{%8e<C_sIjCTWoH17EA*r6 zKyd{>UlQwGj4&&)BprmQXh{dvRLt;!A83evmK`|kXnmBODEe)TETD^kq-427P!FYp zR1{5&5NXW27(wX@+c|ciyBH0mFpjY^1C<NVW9C2=QEG9qo`GITYHmRjBdZBm7RNDm z#+G`9#)OWsgD8TUk9ij(=(+)d$Jl{(+8e*?+3@8s10%;xcA>rKr$T{m6fgpv!(eG? z4BBvyyQ5)dWNrYuGaB=b1hfVS?yk5w=saoARZ*CW7c7kQz_X2@8wgD>)`5eMU|-FV z?U>LB^2seMJ~0M0&n*lM%?vFK&5TU(wa`t?K_^#OSYn&BL1_`<?u(m)+OGzni_|cN zb1jVYjE#(pjEpS}z-vlS2YJA!u&?3xF5908YNX%B(nvQmu`n_+v;=Kov9vHT$1@>l zVrpn<4mu<U+e9;pPjJten;U|z1+z54ocOme0^JH`Y6jXHYhq%6))_Ygb;j3n_-1In z14YRl%qTGe-B@O132Ib=RvzP9cnsRNYhY$>W`TLpCtBjd-5obK)H5+L1RXwuElMmc zjX>u`n;M#8G}FQ7v9IHhh}sLj%J42YN>H2W24<j((!qUw3ln_fZYCy%pi_@PCngZ+ zZQ$;Yn;Ytxn_HM07-H$i8tWMw8yFj!8k-uLSeT*p$H6DEujiPz`#5-r{T`-Aj6v5q z8XFp#fmX0u;_Z$bgC=QB42`iZ*hNWNxQE!yjr0tS%ni-3>@u)025k^Fw=gm{01X+V zjgWv(W#7Od`72ly)B(JYrQ>7{n(i<*Fa(WQ;XTX8#Mr>Z)WqDx659wOibpJQF03>+ z(gWX%fVl+D!UVLx%K|)XZE1u)X%0S@eIrNf-yfx*frSU)fd!P51)979&0ZN=nwlF} z;ybX!#K_bDH2h$O?Zhr*f8aTn-P}me($K`zz!+mh*TMv}gU!$ova|)Q|7Q+b(!Pm< zuSIJID62oj%<6_l=B9>bpc4ixKnJK9;aQt+VrXdwN?NAa)*Ykx19yMi+*l7(+=K2U z#pubJ=vkOqT7c#QO)X6g(R$?IquDoetetysDaa>}Fnt1E$!H3ivotd`H8r)wGv#4o zXkrAq;>^?%%NRR~PjC;igI14#juODKU<uT928|_|SQr|BR)C?_Bj%uq^DP`*&V9c@ zS>!R6ECM=~4>WiPIuFMH-==L7(1mcIEg8mG=KoPVf_tZ$xrv?uXh{y{yt##`9%xss zsiC0>=vXhbY6N_^>sF3^@^f~BV&n;Cj2MCrs5JxKX<}$#VQ7dqj~IYfH<^M?2*F?a z8se$hP4tXS!4r^})rhGcs8$9gFEcZ9L-bq%8fD+cF<pMid{E8)6kPhEj3OEt7=SjZ z8JHOvn}JS$z|%%Cwluf2G`9rZLrK6VcxrYNJu`Cy(B43dOk$=7zVg@H095E0p&c^; zKH7CV$C{q-^&pQt!{QMm6B7e7&~6;ikvb;$<_nB1jlf%xu^x(plD2S9otvBJSz3U$ zpku~}nVzY!xv3$@Bj%v-Oq2mp@ZqjII4Y9jH-OUCbIi15WMU4w(%0Mqw6)a;v`Q0a z``6e4w13bXbbua#7{ODso9Y=`7@2}Dg~k#kmc}Naxf=t}L49a7y9H=H+)fVHL&C>E zK6!!Z6GI~dGYcco%^oJ8RpI#BD8?3sW|qdF(^Cm$cRW?Qsh*jorKu5?{c0BAX(~fw z6JtwLQ%g&<v0d;9ue&&kYUO%CK6#1h6C-0YOA9kobI>j?3u9w^?O)K*k0xdomX_ES zjG`ni+|%dgW_kvOrl6}`FjE(3qRI?(b(}G1sS8>o1$@ZsZVnF49Wz1M<P~N%F|af- zGBUFOt?B?x6I$X~`f6+rS_NonX@YI@HnLCf9P?^!re|yfsxdI<qb$tzEG!HRjEs#; z3=Pnil7WwT-NWJZV@3ujN?v0|iLrsXsR3v$g9&(xs}Y_`(HOKT+1$j~5Zkp%C?3I6 zy_@No8Jijym|@PKTUdZj@-j0rFfukZF+pD)4nF90FUJbD1<OE{;u~<Kh_dAXbRvtn zg{h^HA?O4Jd=X-5X#qNG&(egz{D%>q%H2%Q(!|Wv49j9m3kyBa(V!N_po?wIOwcn4 zsB+)O(b07-1r#H1F=NCKbgY`Gk)eSR=*nhee0vB%0cBunY-DMQWyTgIM(}jpL3!E& zbQdaSCIL-7Tbi4gnp;?ynwy{(T%dLC`#EG;oytKzd56U(pvBY%CdS5~sb|oMo4Dsd zj7=;+2g6z#V&1xp+DkOTQ@xw(nVN%63dcMP%feC*R2i6Bnt=}8GelcA3O?@j07r@1 zhFPHO{vMp&QQGpL!x7AkO+hDO8Jn8nTh#zslLKzeTVk0bM2QmIv*@6;Bo?3!6lfk1 z^;i}QOFhu!n2DjKA?Rvyv=$fmz}JHuj4Ze2fjsg7>=Bf9ilL>2ftdwp`L~HV=rlV# z%K?my%`MGL%uNi82-GD;cslMDdZ3Lt2Ii)i-4aVZb8uta)Z7SkUn@%W4nFbq5Xbzz zhwp+s@)7J2lo&BK1g~fSH6F|i3=Hu4!^i}Drxdp94NzhPPwj4@2U<pGfaQJzO9MRv zGtl(}Mn)!}qfb%W@|K|5{V+$y=?k2oO!5g!CNVIxFaYhr11(botwY3<NsP=a&CLu< z%?S0cjPTU%7J3%OhK8mVm}$$>0MvvrH#Y)p(K9qfYdV5Yem%nRWa6R*P?UTIM+s`$ zvM@BVu&^+(1aDF`GsQEy1v(r66engDSQb~K#0j3--BQoc#2j=jF-F?5GypYWKpXH3 zElkbPR*!;@em%<3t=~8eRFixG*Cc2jF*7tXGBGnSwKO$0voyx%5kpf@CNZ|eb`T-5 zM~n@)<hih~2>`7q0i8&UQT|#Q>KPas8-nhxv;^&+K}%YouKO{Lvgr@wLH_uP=?_qX zG&2Q_?-?1InV6g5SsQ0;XkY>=wy^D&Lh%Nks@+o0+}sRwfF)*p7=oKGrl5RiVTsmp z2cP|VoTIe+gFGmUe8bEl29}_UZ9#*;Mkb&I?|2r+85@{@>JbY|V*<smG48q@w4wxb zg)^3Yc$T2abkJ@H6HtytU;SeVs@qR+h)l6j17(r#Sh9$bxv7b%rJ<pPA*cz0Z(BX+ zcrsAkZjS995R@pvUAJ2p=$RNA7@3%07QdE;dZ2w@rl5uQmgZ>vUGVv@Cpp3u)4D-X z@&hwU3=KfTv7qC@%*`zf%+2sLw~Q=}L4GwbGa*oq;5h&mw5G(+(#+5jb12)=2y~{L z5vaB@H!wFwYi@y$fIY>bQx>xf6eT~wQG!~LfbPvOGcz}}Ff%p7dzFci1-Q>*WR7h? zFG`HyuG%dO^$frpv@oYhERFE(@dO_OdzwR|Z_6Z5ZvTau+YOD4j7*FzOhN1a%`6N} z@#GRC3nOz&6VTn4SoRL1_yl*)-NI1M*woU<0&@weC1@zpz!H1}su|jX6GH<7A!d#< z9DP&ku7V=uH<k!70o~SZ1nxE&n&4ZQYy@8UY+-4NZOuE1H*nYN7NFxSK@Dxp4vD3) zo{^D-5$I3|L(nh;O7UxG0IJ!~a!gyi^B5>X{(vI{C1n{{SQ>+t<X9Smc9!7lB7#QJ zLEUykODqfIP&|Trg`9<<o~4DQfjQ;{8kWYOLn%NP78rx>@<44f8XABOf<4Fa!(DR= z$RB?({Q(+&urx3-H8lc_VHo4tRtV~`7#o`#6PoHV#$Bs}rq~ROKsR+@R)@xV7N#af zpkZhOGYb=Re}ML+pXYdc<oQ!j!up4qu)s$hf=;ysEm{Qi+;9#E8G#yEpc@;o9q)x4 zA11h0$bqKV49$$N7Fi~GhGyoV)7A|@CqAS0s|*c5_4);lzps8R0(s;=rbmoH3s4P> zOpGl--8N%9ZC@i(6YyB05uq+Sp0i*rj6g>Ln1FIR`pA~0iJmFwh%O^glp7nOmc51s zphfQ&ISNf`*g>^O0|&+&wSlFHsfn?rxrv2|nHgxd2zT4p$i&jb$k5cpl+b*r37(4G zSkKtV+{^^aWjU56dZ2@`Kqs<WSX!W+#AIjys@N}ac%}6RgM8A6=@Ubc4?sOK(8Wk5 zpxGkaiOa;;!r0Q(z>rYC$^=ivZmef!2AT@TQjLIarvS|{nwT4d&dx<EwLqQr%N!DG z*z-Y&tBC{4Y2wC)p!sv~o^TTrLp+UNBk+i)xupf6*>)4$$H!S1>sgvxm|{6+#u9Wv zg@GaH>Mdh)&_FbD57E#7G$en8<9}3pIw(q-u|$cn8EDnKIp~&Z3rkCUH{cl=8-XUS zjIo|phLYd$)a)jDMiv%k7Fd?PTbk-wm>3uvfOcFPSQ?<Ve+>;lv+Y+oygMg)fqc?} z=@SFc_12aKpbMoy*XNkvnSukIYXTa`voItuafRnpSPK(9GXqdffhBR7=^2_C7?^;@ z=gch7jyEv`p9*`8BU3^y1(dj2F%y@OfvE-Puro_@6Y!b<d~FmXL-6FT0k-39QQ`zo z<!+*930kUPf_bR8rJ0_Ixrv#Pg_(sJMwA$W>h|j#ZrgelL3Lsq2gaRiplgW?4NO1{ z2Lp4^T`+h`E<@0qDCoF)0>h2qbsE^ah@c5WV<RkA$61=`nOlIa<*_ukG%!XRY%~O) z3VVa2`$mEQC~380CM{5Z#0a!iA9Q9oXzUE1KMcU@9}KXav4|2Ocxrc3&>nRQBd}Ld zN46}@^$ZO_X8?ifctdlvOaeX@_9lnn^bapUKIy>X69Y>#&?$08pm{_yOMIgbMg}Hk z2A~!{wnH_LePW8IdN<XxFf%taz_Q2C(p=BP(8Aov*x1AbbjB5G32X?e-fwZ3TsdqA z$|RkbnZyvZxy!)N7<BiQCFnp?+`EZEJ7Pcw##j&-|HX4KtOe-i8A~H<_Yzuyt|T|G zFtRi^1RY<A*5EP(RqwYslI<A5XFzvh@rXI->HyH8$QGu?28Q?!hBdSVU2|$;Zb@hj zyeaOD>K358XDkhjv5ahi?%psk1MT!RurR>LC7{~<4hMsZeJdz!bz`P2LrX(*Q&7Ln z#Lx^h?1-ngYY5tHW^Mtp3jbW9DW2NhOwYp5z|s=Swl+%(J!9|@J)ns`Q}lKU_-xp_ z98b8r&w$ca4`!5rhAJ&V<8%fFptCiM@YL>xpgBilQ_yKy1bl*fNZ!I+&(P2UH06gm zCS(Dc!Un~-Irx%Al-k`8RJ-5f=+6qv0C}Vr>=BgC6=-n~c%l<Dv1Wm9h|bX547An> zbpIa#f8eRy&Gk$`>$0#730de_T7U`@(2f;jQ`DJ6LqkyIexD<I^#wLi+UmoSwu~*! zLB~cKfG)5xH^X<`FsKu1YGDAnn2~@_aF57anCqFFm|I$4OIwzDMwXUl1_l<!mS%<~ zsN=te;NxK*a99{-a)au`ek^sOrLm!fvAMCCse!Sf5$KpuoTq*nnwc6{nt|@DBj6D{ zb-RV0ff;z=A7;|B)B~Nm0UDt)0Ih^WNm}63VIOkTZal>ZN?H@ZNegB8*Vq(v_a*4w z6!2jX7I@ZjfOm~qT9}xc5*SD^#XTZ#VWDSiZf;_P<t_nBOFc^?O9NvIBMUPl1M~<1 zb=)6uoDa~_2YF;7rbmn{!L1(yGtm8KCZ_lf_cH{owE%5ZH^Fjj3rdxUr*gN@GqV7V z&tlxRVQ65W2fn}35OhKs+C-wE5vb?>m}9N)>j|KgH3^)uP%=B{h!D_erlz3n!sbSJ z&QCT3-HB&uU~EdD`HSaxSPM%%0|R5w@?7*02#`0xE5|HAR|0^le$<o&s@b1#d_H&D z9F*55W9D_xWeT9I1v*yG610{HcWcYg#K_nZbf=stfe10fJtA*m3EHl1Vurbr1LPA6 z(3zDc#-PC#W3*BWd_L?`j;{wx?tpwU1=A;npgV_5L9>t+29S#>arSo&jX@j1O)U+v z9eIMBwD24dYhel6ux<h>UeU%N3=IrH8`eR?{^sW3?kZ}Wfa>;V9JlW!oB;V`Di)uZ znwl7x8-Z44TbO~)oWc_)#)hCB>!5>s@fTZoPKdRz)UyQTXUr|2AfK3kmYZ4{TbhB+ z>_Kfef=`Hj&LQn^tP7Ogr(tGy&@_pKiJ_sPrHQ450p3F}4UIr|37HxaEVs;X_uMTF z^o&eFClO(06GPCJb<lZlmS$$4a~V;i1XQ=b;Apa%vjh|+(=nsO2s9RCYG4Msp4kj^ zB{rTYF|;%To#|j;NMLdS&l$0n2B38VCMJd$Yk&<6K+Bvh4NOfzd&)uAqoVo*RJp(8 znCB=K0rJTVOrL<SfB{_wYH4O}U}=tTEeB|GyrqGKff=^j{!p?B?#kWLKo8W403B3` zkxh*BOh6}dTUdbCT%u)o@Hw%sI1X+!2Y0V#V)_I$5DxN<sj;D%xe@5%U)&kqzyfse z325yAfoy`icDFRtGcvRU)vTDQ%SaD&{;{Qnskylc`XV$#@KLd^Ii5{qQ3Yj_S>SAf zQkfWnE>$!#0Fj2E1dJzffu_zZP0UQp2-NOoxNCPyLp@Uy(ApD>75|0?#(D<e>fP8J zv~vM<n%WS2R_q%N-s;73*cq5OW`jL4TiRv!ZUz>V=8B;y=p+pz17lNjGtlY&cvf(M z+FYP}M9l~d*qPy8FmGw7XJKXtI!GHMi5Y`#v@iwTe`f+ZMFO?_G6vQ1Z#f>ksdNEF z%p9<PP&@)UT+Yza(h#(W(FDBy5N8rIurvT2+GJr#Xu`xC_n9=7MtYzwjv>afW>CbK z8ylM$8yXs$7#JI)jn9LRjeW=QYTHsCP;+H2xVeJr5koW3sZSOrphM=&EDZ3>yBk=5 z&e%0DG$pVO0?)Crpm{^k-flCD>xc~vOh9)|T9_JGSXdevpeHa;|NT8jSpJ=@pa_|V zB|<=LPcs7}Q*#3&OH*Tfoh<MYM+*xJBNGDi?&i3M=Pf~3fSDMX8Ds2W0C@y-;F7ty zv4w##+HAEU_~6(N9LusNeg_r9^Eoi)84N)aQ)Wh>GciFEF8DnHx|7(z(vZ+f2s}r} zS{mzt8oCx{7z@!r9x<~tF$7&+1i2*;r9v?Vjn04MxEKHaCTLU10uG^Fj9e&-91SfD zOpGl++v`n0xB1{My9_`_7h9T{7-2hD8M!(!$5X=_>zSAtfI21^Ssiruk)egDnSr^b zp@AWK$^zB!pEz=}!heDyWFeLa0Udj2U}j<rDu7Ll@Gbl|Ff%eTGBY(cA=D5y$K8Fm zG}bdWw*=iAj9Ht2E<Z9fwJ<a`H8C_XM9=G>8vZkfe`D%pkWUt2`ozH87<7rQxiM(O z+}Hr$=0pQiGZRzL5*b2MSmt<Yc+g3n;F=MePs~h>Eewq<K*!CYoo8<dK0Wpe$BlOv zN<q1OF}B<ex((jQ*vuRh4tTf18GssRpy5qIL&4^_&w{rEo&E<pqZyk=EG<A6B!doX zv@k(ktZ8Th8k_&hQ6lyJ7br@WU`C0diK(%<fu*T|CFn{(OMF*8fDQ?QoF7YI0M#5% z4G%i~&&1H&5@Q8{p#kXlKT~tiP01#f256V)8G;Xx{l;-iE`B;Fw=V_fc9f=yk(oJY zzz(#6-ORw;0MB5Zfw3j{Kwl$*6$zf2-Bi!O95k(rKA-~f2l%`&a|26b3$)EKhT!94 zzjH{5f1Uw~kY!jR1auBA=%O2N_r?(4fxZTy<EqRIL4yVO+m3k7kF_+_11;3G#JuwX z<Pl3yuN7pzp@A8C(gJnhe{fhHQBwrvk>!|q#LyVDE*rE`)565Wz|<JeDLV#6=Aa&s znYl56p$I$&$Xc4}nVT3Ifv!`R<3gG)5d`gx)H4F@O0)nir8GtN2&iiR$-%?LaupOM zE3iZf=ni&M&<#k2W~PRQhWHwdMuz4_W}usE3Cv$v;Hlcp^gu^mgRVHjs7lO1mtR{N zS(+Jw8(gTZM(`oBzc|!hS%DiVD>0)4G!tiP2097|bdP`$zRR@?K$jhWrWgn`w(uMx zYiXuuY-Vn0YKSGXo9kH`TAG@f8W|W^7+^#RsA~VsA>7H5e}sXNV-<(cK1MD%E|#49 z;^HPoQ3E|tlfcZ#!pPLX#K6?h(#RO!;y?rNKm_Q}Ljv7i3*2M#mS%dOmEguESQ@|< zdZ5M<XtAX!XrLA?PC(WBAC8)XOnjhhvKli^K&v5)j6v155$H%nd~3Ksx93`b4m&p? zu=EMfL9&)+dX|=EMg}H^m?f8mo~ens1!%n`=!SSSkAQ0TzZ||N+I2u4Sp)V6N&#$W z0V;t_jX*=F1_l<m=Y7n;eN_ufLjyviTo!mLcXK^s(72x=#>Bg!frXw0Xo-TUi3!Lr zXw4MxL9+iiPFg))0Lt%cG4s2zkpXD^mbp1-Q;Lz13GS-I%+eBcf2}2GV=93n7*F@z zT+htN!W48qDn@>{)H4K)P8pb3ni?CRo!4dvK1%jK$C0hyvp_yshv^g0;hNypo`#kt zpvz2gFChT!H8Zya)g|TxYIi(m$y%E0S(<>Z!p4$IEcHN(k}N@k_ZFZ<MJR1~@L94A zoIABH%>gB@_29&X+D$YuH!%fur9lVYf=-ae*_sD!OSLqyurwsN(#8T$^=_eOWNKuB zdDpL@fu)`W_y#&l6Jtxz!Z=iqfI9AtoKLvlt^)OUH(>U64J<4T3_-ikEey>-ZCu<F zCT5nPt$(1)P6@Rf@f;>=X`yFoW@2WEu@}zJ&_EA-0D>9lkX}QyF)r{~vQ3=dlyB64 z{IL<!ABN@@mZs)LpqV&B15?mu4_pHfW|n4_MkeN<2^Ipw^LS2^wY1Q)Fb7ST7@;3M z2l5E$a0Ae+j}h7tdWNQ;%DtKML(tBCkUutI`oqZ7%n&qW3F>U%Z>4}v+%<-5A0$wb zSmK^{x3ttVv@`-8y^G#RF*MLKHv#omK`T2f(3W(750h=-T)uq6W>8k&jG5Jq%s_2( zP@@r4{+i<HC7M~9nwuIK8<?0I5g4k&bDFHBrJkvwsfD>IX1CqYP|v^&biEen`ZXi8 zMdpU!(_~vY)l2qQf?{L~I7U$G5d#CzNwT2T_Li2Q3qWxvEK@@>QzOv9&IAThEb-Lr zmU<STu?{ngW&ehThI+=JopuJM7U1)-QFA(|VsGO#Ics_lRAg-h7g;F&FaRC!U<o=^ z*V5F?&=OxQ0`BU9j_V;%_ToHE*4V(nK+n+3#LNtHjSa{j=7wfQ7RJU#pu1bp1|Up9 z6?;49-dS3;d)OH{wsBZ(;}_!L=-2`})$qZ?4VxIHq!H&97N_QwG%<3S8krbb7#o@E zSxCttBq4_y@){eMfEQ4k8iNi!ROJ!}oeBjzo-na2F*7GIDJK<lNFk@8g@LIdXqS}~ z@uwP^>seajJ=M@eikFKeC9^oYiIK&~QqNL~hl@G6ptOmR1#}OK6!dsP1JpwSSq${d zKnI3_4--T?!4Gom7xctHv=jWmhY3QBL_47lqz!al9N0)K$Be<{Ofj5d06!@a^N=wk zm=ACqPY1RR?Q}YjQ{cWsJAjSFK+g~)2R=#;%fW_5@WTtS1PlBqIYYE?0hx-B#0(h| z_#tbCSb_%O9<;Cl2RHQSHbb<q0eKQ(C63U6_!2F6z@|bE+A~B89<UtLMl2^A8iHaG zY$%qK4NYM|XM`R)pruK0NzBkOfCqpPTIhhC19d9alMQ7cCruim1r94{8XJDNBbK8L zjS*I2h7KsrK|F~qbfC_`dbA-l<czVV9hgS6&;k1qrV%r64B?S%j21X3i4M!*hKBG& zhkm#rO4`A8x}mWYG+>R<LWkATSkD+9(Z*=ugW@9W#~VTe!2~UYphuB{LmmBeL-28e z&;UX|+>pgU&j=nsCYS+)IB(PhEpMUfL`y%Q0D`9wEXNxfOVRpxLoxK@4Ov0wQJG80 z;X2<CDlg2%2|EAKKrbCs2e4Y2=$V7U2ipmUP)T7fE{G1uA%-lb#(LnK0}=$)WymKS z!XyPilF;J`!xKwNikleOj7&`ROiTzIa0pd|>wrVhCOAui2ONS`ZG5i{KDli>xGjRx zeKIrwO?jG{nSoBsHn6b3y$#095_AcYiIK691%V+foJYcg8zUwbCg!F_Sh^iXdIq3l ze?ZsOf-ba0X;guagzw<2k9@@sYE<n2djzFXWn^v)zAV}Zv|r4~0$+#L*aUQmH|Ty) z{9SXLN5X^sVQy(@U}T9o$Y5v$y0{VPR&-R4fCk<>IeVT5GlN>WJHf47lo&BGw*;M| zZf*%$>}zCcV$P+?#ha6wSd^EUmmXh~Sd!YrC~T=`X$k5*Sr{6E#)b&^1J|&-u>ok^ zkD-yN3Fel3Lqj7yGtl*@hDM+>#L-TBFa#e7-^F>A-{uEs*nJmx*d1k(4Kzh=2|9-a zbRDfZzW4y$L;$|6hETe)<WfZ4{Vil@W?=zZ7Hwdt2Rhcr+!S-x)6fXCrO(2`(%8b- z7=4lrd?b7~XWiV(_dwmJ-I(1c19Kx&LvvGO(0v1zhUR$3d_czrT3Q+#5!mo%g!4#v zaD<qfnp%RcwniWGF*Mc#oik$s-YRTqjMfnZp9$Z?X?(oxB`AmN!OS6`t*yqOi9j<; zV++tFF}S-=pc_Rj%?$}HHZwB7wQSDVz`#fkbRv$SIhKB)v7VU`=m;D$V?)r%YN+Fh z;6veiIeE_od4W8#7wi#~90EG90CZWQxf$rj8bdtGugyRgSXhA0bR@9E!N>qt&m8O% z6GKB&BaA(vhK9y^mS)C=prd$93^2y7z^B6ZacXPNHvy%seVA#>(A3bx6tn@t7_^kv z1kcU5X5jsFMn;yVmiW8opaZ9HW)dUNs%0}XGc1Lc324=_kp*bj+`t6wYFtC`>9YNt zA53ISK|a}!#V1CfgXIhjjLbn3%|=F+xJThEEJ5=ip!F^IClHJbaP`eW1D<-I13wIn zFvk-OP4vtREzOL~%*_l;EYL35G6bJ4JAreK+&u6StpiwmVqk7)0y>D#5OksnzR4*w z3(&Z>k&%fxfl+rO16-5pV4s*68h~$Tz{u|=dX{EJhUNyKqwvhp?oKcSA1^zRllj8j z9iVJ-5S&d=YeYlP{Xr%srbb3);O;-p{B8j{e8AY;*c97cFG$NAK&xMHCN5(=b5kSG zcsIsWw4te<u>t5RYg5n-=@w`kT*0TyPT~~1vDXabkwajQpyYQWOB3)Rc}Ae!2cV0z z@gy#D6VU2Y(4F^q>qH|1TyyHi2B7smW}reCn@2#WC!2%L#{k{oiCS=hPnVs{sh+m{ z5Xd8kv3SJT(8Acrz{JSd*v!Pt*b?^=Y%>c`>asL9CUCTikpZ5%-2`+J4QTcrn@2!Z zjIp_ysS)T*JT#Ah*2GWY^c1re0D0sH*dr)O%g_+C-P9aZY*`o^<2eHqbfd8)=onB! zd#6DQ^Km9E6FpE#4=Nuq@`#xp=)^Wt3kxGN6B9GEIuU%l>{QO?Wq%w%9ytp32ujj2 zFb4&+xsjzQXimrk&upQYg{hgPsj;DfIiXBqh-<%_v4Mf9o`Hd(v56U$W{R1fsi~2r znSrq-XdMk&jDY6Ur*Vofy4!&Y;A5D@mXWEsiHWJ9k(s%<At-6$X>VD8t`#>k292fS z&m)F-YIjpTV?)rTE|{x*4b4D%`i#siOhE_YnWIgzfe)CS&YAvF<~}G&j)S8FC2bj- z85$TF8i3Ag1YP5f&m$(L28PC<Q*H2%jv5)_no|eIh?$9jfeE%|in$)>sB|;X;Y3E3 zXh#<tg3p(o!O7IlsRU{Op8z+2Q9WV+x-G`s0Cb!L=r~h6rIs;hvxT{lnF0RcYS4vU z*zc|Zd&JVj!qfzF+lZmLo~Z%oIvE3VLsLVv{fFS=WoL43QYuUU^+!&E`y;5{FtRi= zH398*Gc>X=FvT-_Yhi3`U<z6{PvGPVBST!P<%|tLi+xNjLFZ;+WOZ}Uem-+^(CwT? z7!7%I(5U+?&SlH9!PDud!08Gls~ee_S(+Ldnp+y18yOoKnBf_A2c5cY20n%q|GX6F z(p8-CVWwwlVFX(3j^PmtJy5635Hte-I(+~wtAj?}XLBxHsjv|gA*aC+g5nX#DO3jL zW+vu_#zq!+E^9QiFaoX5F)=bA<PTia>EH;lu(SZ(o{F(7z|aD;8s5YblsZf-QBOZI z1fMNChx2e^7&|DVpTUd}@ByplCWa>FW@ezR0eB`nEeuT!%*@QpEC@B@4e?a#=6Xh; zJ0Y=@SQdKbX2zfcBP}e9O^ncHJi$lH&gGnS=Gsq?N6vyhf|5f(ljEjl7A8i9<`#wq zc<$OVvoNqU04)W!BydK#ks+RH-CWPq$imDN%aUtDOFaV%10yrg8g>(q87M;!;FD$N zaq_NH1TVQh2Tob29x*pCF*7v<Z3ZzgGQx8rHs~G#15iuL5ZkSK$Sp=gJbiX^Jqr^< z&@IcDDa%sN7<Ax|k*R@&sR>%G4n9|QKBtzbH~6Tt^O%*PfrXh7=;R~=QwvLD(De_v zi(YfkEpH%S6F4%{2<N%7#s&r!dWL3(My6O+DjQnrfeuhMH!!s{w=hOK>(>x`u<QcP zNqbZ6KuPNYX3{b;Ha4&@HZZd^1}$&Ev*a4I!PvmS9CQFU{*`h@MtEv<3q8;hFwnvl z^g_$XK+nL))WFyRv^CHaeO)a0T-k-3DiUYGCrw@idj!4E0-bqlVqjumX$D$Jj&nP{ znYo3Dr8(%jXZ&lKjBp+-3yu+U3kx$dEd4_x13hCCP(Rh&&;oSbA8P4q0ov)dh|~3l zNd+iIE`dFQnnx@wK|Ksp(4jk)hUR!Wy5{Df6JU&uEer|N>PEOWu^Ss0Sn3%X7#M=~ zJYk6uP$6Ie+8SYKX^Ga(vM?87=2*<>5$$^p<dMr@kD$hg5vYY`W@ri8k7r_FhWk7e z(A~(Ou};u&>-bxYIM0;@`^3ZmlnF2!C`JaLQ}jS57=iW^p>5CwA1k|rQ^j=FWKh%h z3TAFMG_e5n!9h1R8kv}y;aM1K2D%#9)XdV%h`<J2BO^RLc1t~TP&2{;bMc~)p`H=w zHbo;NBXcuj^sOS`b7hxu+TGr%3yPAf;3z>!TgISqIU`d`OEY6r(B5x6#g-Xpb)*q! z3oU^d!CkW(8t54qn^>9~VGaiw8R~&f^0P2AF*gM@mryea_*~g#oQv*Ad;&$uHOwdh zjRt`R#EcC<7qx&6tHe3>U=F%_#N5)<guwM9Mn<?6${8CNg7P%@q<)N^u92ahg{6hL zftjHtXx|Ik5(n_XvdcLif0NV#Magw=l%V7iBhWySk-341si`4o#{iyIqq&I%Xmx{` zkr{#R2+o6L!9D?<hGT4wxedw4NDp*$oT;G&XoCXUT4nILvMV?lSC&?RqT~i<lz?t^ z1#QOy?P4-BH8I4~+A=pW0`J==bOIe{m=9N<-OxY}bZNU0mWc%;BR$Y65feir14{#A z1GIt*e6Z|FPK!xeejuOR#Po@Qg#l<x%-9Sx^lFChNGdbXF$yL|1_q`^1RB7`xclse zpgZc!&9GLAMtT;YLu)Ne3`~uT%+ccn)M;PEsWR#88jw$JVfw_-)Y1}k=Y@$8=-72r zb3A=3(3q2%k%6%#frao!#<;6@Lqk0?0|QHQW6Y6kBV#>7(7nCpps5bfQX!O<BlvLH z)tnqXkIsYoB)7pWN0e-02#O6OO9KNl3sVDgLrYUU)w>bsv|-TRM*Jlg&a-7fml}Z< zi5q~dL0>FqWUL3;FbFy<(##zF{3GzuvTHa`<Uh*-W%oPSvb&+FsfmS=u@R`eFvGK= z-^|?5!pOqZ(AbF3c#tvf>fO*t&&bHa(A3ltqX}$e4BBmFZf0p=X>MYM*0};7ExVTU z-2Rs{KpwdZ_6SN<VrXUnIvvc^(9qJr$ie_$GsV!z(89vd(ulx8{-6bWICHxZXn(E& zXnX>rnPLLkpKE4p3QD>d2hf2}mR-j=*Ya^M$RqbKJp#Ju4Rq(7rJ)J<!f!lvqJf!# z1!(Tff<VL37<c7vXryOhYG?{_Cl-&GfNmBuGdDFiHbvi11wL7JJ*Uq0O*Wt`avz*U zP-4W$#LO6UTDOI{k%hUrp%LyJVrFRxs;rC&Ty<e&jHhk~<!1}fiO-ldqKTflp@FF- z=$<xn3$%0ejKC+$Zs0tz_o^hQ(0YKa&;pGHfDc;%ozi50XT<<$qS4IQ#K?%ixdKMU zc<OdzJrfJi+4NXiDW-Y`#-P(dK?}f5&@Ov30v|2Ak@L|ZL-0i^53%^f5Oh=kXf?N` zA?T<cJS||*iG(J`7NGrS1WGO39d|=xJ<t`^X69IZVr&YU_csBpSv5ti5{<xz%WmTQ z=CnH#l(rsWrY%DQLrV)YBO}mh!6p_)cuHT;aS(=}6D<i$BjP+<*4V(%1hnPb%n<Vc zP(veAJ#$ceo12+}PK-n?wTujmg_t=ubDn-+8wJYjkHMK8r5XVpk_K8{Z)9c)I@A^4 zDh@MqQxgkwb0Z650zSccx-8fypxVm71WWM?+G}NDZfId?XlZVWI%Q=9K3sMSXF;-m zG{_@Qz#c)#?4To!3{5O7O+ahY%}j9ba0AcGnHm~e7!WwK%?Rh=vS5E$m>5}NIVIQ7 z$V?A30%B}z0UBOLJG9LRe7NjZ&JR~w?t^msQ!IJJ)WpKV$O3fvI_O?fd`%QHGh@)I ze{)kpqm4KZmjzvVu4iZt+AoB;YQV@$&)mq^1hhNC)DSf9h1^6j0v|5Bjq_wUvk)kc zJj0Sl3_)j5o11|)OM`A5!d;P=nS%NYhM*07_%l1svt_{^0iE;=+Bb{QL^0PhFgLO^ z1kC}OS)z`|8ySH5?b|uM^n$^+hCas<BSvOM7M7qJSj<dKK|M5l9sx~0m|9pG5XvLC zr`iooLFYvqfHpT`)QIMKCZKyXOie8e%}vmDiWq^<mfgYGseIxQD3iRvl1V_97#W)z znu89B0PTOr*+~SQNoisMx`q$`1`8t-JXO1yo}mTk3SW%V?+uMWM>Lv(R<?m=f6=bG zFajSfyOT4=O!*SXBQL=oK`FLC3;GQ~tzJtbQ$s_1cXpVW8C!rZ&oeh5v}OS3(Xz${ zhGw7+l%X-^squzJ7NAu(=B7rV4fV!oX$yR^>@LnfO<#Y4^2jT29zpSlu?46|wFFHe zS{NEyn&Igrnt`s$GBz+bCe-{j!965z2)h3XbZ{zW>lbwWlZla$sR3y96>7)I2z;>Y zZcc9{VLwoWyvB?WV`Bpo(0IO?xuFs0I#_)EFfs#OsAgzM;BaryX{)&AdJN6=j6oeh zEF(e|dX@&p78al*9?UJ!<`9j*C(G{PoV+PX1yuaL!OZMN<`$rHoIv%11?bQNydE(y zFf|3uKM>07xQFBoK^Xx&*n!z>v;?2bYzo@jWd^!>7p3?GpDeqVQ>LJ@b1wrU$6F4e z?TlO!u#LI=puuAkLt{(OUT#Y~Coh|s85&!FPc$S{tK&RW*4V%hG`|KqaTDWG1w$iC zJu?e)BTHj*GjmI{YaNZiXUgv5Jm2Bz3rbe+Fq0MN&?eAMUQibSWDLI8FfcbWH!%e* zx5HnDm>S}^RTu0LQ!_(zEQ8p_pe=gF#wMVXa}CVUc2XIE&y?NIsc`R<Hz=RK$IRyj z7UrOdP*czujiB>C@wMR%3{A{UK@A}Squ4mllm&al($vzx5OXJ$v4I{a$$}Q`f{y=0 z8D}&y1P#U?;5?Eb`V^EsK44}K(9o}?CFrzF3-DkNo_3b0rKyp*A!vA(z)%p*BV|GB zarKOi42(=IF<U3b26~{@qPek|p}C>C5n2l#e5C9_&h^4xsi4IIAHj<SP*=;E7+P2u z85)94z6Gt}!&w!AYI8F~Lo-W4D}zjNPqKq%rA!S?jj(vb5VTaw(8RzH)NeyuEo%fm zQ1%dK;U?>Ypa}VdB|<>=G@BTkfa1gybeJ~o#)&DYS!rql8qFh+LvYvWpjjyk(2b*5 zeF7Rq2i<dFWMpW7UWI^W*$;Dmkj(`jyZjlP*HK&W2IioP!Yo0TLgKxw4m8_p2D)9! z!jMqP!rfmtGSD+IFg5~R)Pmm1GB(r$&9H-3)0kU;4zWNfc)<tC9^tfF_P!4kC10>a zi3w;7$rQY?6Lcp!p1f{qZUEZ43|gB>AWCre*NqH7(<7i0_%NyvW6&i-#-P;*=0@N# zDO8_;R>mLY3>KA00QuxArcVqk4J?d|3_+c63-C?ccoG+A<vMtBnLvXP=aI6;21bT@ z2A~UPu^jwqY@`RewFh*(zmXwm9UrPsK<np@aZVN3kOT6`H%y-xg4Ps)dTik0-2~5x zhM=n!Esab;E1~eOjyE#JU9B4#>Val)OpP&{zQ#tN!~HEm7pYi)*OH+6#8`-#<2WbF zGA8gi<996C#29oYsWIqGJVP@RJcsL;fezRM9cgGrXazIQQ)R(XVr~eU=EjoWjrBmY z78aoUL=8=h(F$NA&{+Hl&gDyvOb6BNKQKK4T9#>G3QAq(pmR*|%=4Inu3Iqzm5>Bx z+HoE#YiwX-q-OxSE(`OX3qxaLJu}b=(1zxq)emU<){Trn`_@l#K2LUC1M<jEut!kZ z@P>vakkwkCqYjLXE$}QdH8lpECkvY7!=K%8o+%6V2<UV_3uDZc*v7`7f(ta1X%3n> zM(d0ifhzY?oNxc$0iW~x3ri+3GB>p}0*y<9)=}ZRK+p_yd#j<T8R&Qp0zSb#7H?#v zXKrc%T8oWYaGB^C8-RL6pc5uROS(`q38>3{np3y@M8!S^MvmVcLOU3_Q0o#iV<U5O z15?nnsD&lIbv33&W@eyETulj0P@CcIv4iGv3@wZe%q_U2k<UBg1D(XE2ioan1iF?6 zwXJ1j0lHC)^H_4f-XR7?jz3t^l`*Kh4(f@6Zc{MEca8w)*hzCUQ%fTPS8N)Ync{5x zf+li|LG4s*v0(|i{KC}0)YQ@lZ6A!05vXQA%Xz%&W&p?|f3bMP$kfEx!q5<OZwaWm zf~OU4YG?vFBGb}<P-DvsPt|U$XAU|&+7fe+(b!ba$kN;llnsqd&_{y6r^%k<l<N}( z-|_Yji$@HNK_{D8fG%scFaph4;BGY<fZ7h0#)gEZ56$q@>?V2!W(J_?dW`P6v8kS! zp^>4Pp|PboD5Ij}5Ab2K=Q;KEE4zWJ!~d8$-N?|;(hzitA*l0bXoBxV1XBahJSAxG znZP7F&eLR#4U9}c$4{9XV>xTi*c3Fg2s*po#0<2x3^kL0Pm{gCc~YQc6DVypaAMy3 zWM~Rntp&OR26Xr-zJXs8(5)l}X2#|O(-xkJ-9*pK+{6&Hgadt)(b!DS$jH>(0+L}- zm(Ur3kCDB|xzK9wSx}TTa$+9#X>MU?W)8ZR)zlI+DukzJWdhn;XJBApOlaQC9QP!< zk%=BCPlK)?#%TYV>6sdX&aXB%0G-@}x;oPce2(lT&Swj^fJYgdutbTmp&{rJL348p zQ_zM@JhMC|7NEf((7rbULnt^8k~KCk0_ACAGYcckCH}@{dKM<2HU7pHMwSL>a|*_w ziv2RDZR(TbpeSj^5+#P<1=c2(CZHq5K-a6`%<d-OAysqG0XF#SL!1Z6f<0npU}$M# zh^5hJu4ia!Y-$R+h6*$QjFwA4HTxCLdv=DCK)Iv^OO${vjWV^cG_?SY_kgxG;kx4j zbV8A(rHP>_ftzTJa2_NJ_J}2DL!$-e%3ou1Jrgq{1JKL>sK<)dXapZ5dzJH%QJxd1 z*WStrI!G3^VmAk^-vH%5BNJmod`rqr%s>bDgVrPxN?N$P?M9$1ZD3-Cxq{BvT+iIx z$N;oz(%cArBGedEwO`{j6{vm&N?C1~Da+UhJe^=<3cl74G-rW3WtoB&xPi`zBd~i9 z=RvZdyAt$Fjg8Drv7Fv-Y@r7_0@e(4O(AI64qD0r)$P|gqto7lC#TynePRUKE@x^E znpHEfGy`p(#^V!EPr}&TlF-^9oCnE*ePUr^YH4nXrS)r}XKZP13QAU>CLQX+Gb8Xp zvNt&QbZ3FDtLwn#6VS=4mWH6p-5j*m1b1iG#KgqR%p7!NErB}G98cvA%F>{YjU{G# z%R&z{A7*N9X=G#$+JuEtyMs@Xy~&wi%8>+0U7c8bVrpRmx^u+L*wn((%nZ*3DrTTd z9gRR&bsG`r?BYC0*4V%Zl&2vxgcwzcrJjMInYpovg|UT+1=`_~M&OfVZ*elc6bFw9 zbzv#DEG!H`3l)tmjSLMfOiXbfNp5ChY-nj_3EF@`pa8~Gxtr^mTNqe^Y6>hKF*Y_b zGXUR8ZiaRhj1l-O+1s36?-slPMM*bilz;}6P0WqVKv(mCHVEQr0-J!&K?7~PByc37 z5zez@jSWDvQkEvh2Bw(D_ZwU4nSt)|wlp>}vNS_muw`Td>bBqEJpH0+B4{MLhZExp zK|^CBGtfm#pl#Zw#-IzCaA$b%8Yj@+dIBTa7PyDxjV$y)BbG*3ieO7UOH)fTP{+ao zbV>kfCIMCMcR3wTbvJ-wq!%+rjLZ$qEzHd=jZ92Tj6jpac(S{pkp*a<iJ>`xA{ggU zvfvmoH#9XhGsT>;GBMCIG6PKy7=hMCpzYr?0v{!Nk5gga=FcFX^kMOdv890_=tMCy zOLKG3H7a;~VqgY30~>U67yev=^DJ3o10zd41JDWkSY}B~4D?JbKsTnFn;IJ%qMb@^ zWCH58-{)MfXVwf#Tm4wl7U-Hf3lmE-6AN=g6VS=ixYL$_fuWJPfsqNJl};9Ts&`90 zV-sUjEY-US=tdG#L(stwmZ0_RsA&sSy+7b&5X<TZHMb^!i!GE^im?%R^OUKng{6go zr3s!@rpA`W<|d#`f`$Z^(BV8s791gFrl9dz%*<|LsAmLTe`*Zc2V#NNls5s@?hiSw zECgnPlGa4bq-6}c%@MRX-qOUx*v!lXPqAeTS{iR)47!zwK+?j~bGOt3oz!QHWxB`2 zP|wuR+{6^rs53P{I~>Ibe3I-V&dNp8G(kR@gy|DQBU1}w&^9GAb3;R8GYh;vF|af> zHU(`RC*Tv@wY#x_9%ul{9P@%;LlZ+i(8Xw$2Bx5kcP-J{Dd3Z2A9LC>|K7ZTosnZQ zr`0OZ8Gy^SEMLkdaN*a(O^i}9h-3aBX8>}8W)%%A3=BZWDaj&aA%_6+fX<gRH3u!1 z*0VrAk52{9k$@baBLR&}^^8e45zs=<$cVs+fXGJx8p00H!#o1e6m-OuU~)mJ9@=SK zpyRKMrEnerXaJK!JFSe_Ko2g3b`%#_3VLv$Ddquypkw904#7N!%MgAzpgF2Ou#r$V zqMcHPEQNMN8CVK>m>Bx;e;{vzf<y=$Bxqp*)(Abl4E^{&upG=#v_N4o&@%y@zy&cB zEm%M{g8UAVL<<<OsW2PS0tQ76Tfo3vgBCKV7UBsTEQkLYz|WIIKm3oyK+hEJM=YoR znVU*M{b7U_I>`ROa`+$kATm&FpdbDR@dxyfI*il*K(`|z9E%n_phN25v227EKH$Un zU~a`0JWx5Tr~kp^u%#Smd>Er0{s-{~Oe3DaK|lNt>`<7YXbA^oDBOqWXa9ji9HtR7 zXbjBp9sOr$20O+P%h7*GXYFB@HHc#j(U1N^aV^%f|DeHxe)b>OConm*jD;eH7Cb0& zc=8pNbN>uze(s+r`ni8B<_3BeQnI*?{ewuOpZaH{2M%xSr~ZK@MNm)uV>LC_GX|gf z2s+sh{n$UKtTY$)bN@j1+!8$Z53C61xqn7_<`#s{{R63r6FjgE)Fzw)ZWE%+5`vc2 zS(sXwn^{;G8JL?H;cI}HgEqezm>QZ87`noF0KBmQXq}Ix8R#xLjJX37BRxaV<pRd$ zmY_ojQAd2h=f6MU<YAJU2x>`9#cW9#m>Zgb1|vZiC778Rn&CMw#MsQj5H#s-WJzFj z!2)-u+}HrTpwGw*bHv94bUC1@iHQMd*xb|tZNAeKG?o68GvVd~cTki}14ju;GaYob zA?PqhL(uXW3w)=VffgAVS%MB}C(ul{#699}47wZ8&=7Ql8~W&iiIJYU8EB=Hp*iR% zaI}GH@CoqGIG^>eTnmbl>6lSsXliBxx;w_)z|_Lf2sBKBv)^QF3c5lQ6mJCjvN%tG z2QBXeEr&HSH^$PJH3lt*1)UCWU~FWFc6E>u_zd{xoF7jJW`cY&1B*|L3_&Zb%`DA8 z8(BdcZgBg=#KHnJBxGSuC{A!6Mq_NKXJKq?YG{DDL&U^b&)5RADcHos#1gbG4W$nV zJ_Y^-=S#!);34;!;KYTR-z_W+OhIEX#-OFBCir&k7@HV@?tU^iC$uBM(irFLtud(J z1TUMyNL<F?C79qFK|lwzq2+f_r~D<S?}u~OK)GZV*dr*p#L&bTbjAhfka|-iGgI7G z?wA=Hn;95_2KxwHJPA6)6W7KzV<SBi@T?G)>~0J?gVO?Z*|@o>CEAgBMy8-%`72J- z1JnM2JTe>X5!9P%%t6x*pab3v4M5Az@%Cnoz(@0&84_9+U<sPz;EFHF%uOvWNz5&1 zVibTKk!cKC-(YTlIh$hwTHRm)x=_yuv{ehe+yeE=UvnyP>^T6+By+H25<^pC&<O>` zhL#pa#^!j(7mSPzjm$weZ4xMf@f;y*Y^-NsW(?i|f|0gBXa9jtu&@B1Xouz#@ENji zI4>my-31N!%moklpr$P|V`IpLs3r!W%_6u*u8a-MKohTqMrH)o0O2`9*4S9j7<3Az zG3H>RiHV-2k*TGTxrqVj3=`BmVg_0$_m*>aMD8+BjLgG~5hGJG3ky>db2Ae|(BgA^ z=d&4u4%;#{Ff}A}^pqv;jcuS6OBUv!EsGd)2PUR^M#h$=pv^7@p!p0mpMVz1z2o%S zJ>xPclgtNa5|m=g(9F^hbe00>@KytJb2B`<CXEe@%}ouAjSUIaBzP)!6Fmb110ypm zM?099>Y18?mgs_xk+MV|x&j{~`<`<(kKGwilq|rE63_sSC1~u+1hhxb65mvzk)^qj zxuvD4u?haQi^h14ku?V8X>&^pEPM1!KpT22O)bsMEQ~-4^3kFMG~)h&bGJNu`+f#S zj)j~;JJA+185x157(qAHfNmu*H^;q?)d;k`612n&|GHRXJg3MSgL1UFiJ_S##_cX9 zW_pHZpaTRf4NT0@miL0skp0N%At0O&N?41qBrMQHSD=e8ObyKqK|98A=XE0s6JsMI zBhcb4yaRBcqYQBE5HSX4XwZev7-g23o{2f=><ZACG#FDk;4@@Dajx$9&kOR%Vz5V0 z$}AHDLrc&#jRwY`^G+@BZ1grVH@7eb4P_hQpC&Xmz`aNgv|`EF+z52c92Sq5TUdaO zz%Vj5GDmM~fsc^=%qhIIV*<z{OTZpM$?BlnVl50TOe{?-3_v^F@T^ldGB-3fF|;r< zu*6^b8sj-a*4Pwurx|DqDQ1tvT+hG~bR#S1$}_anr;NZS$bR9pKmBw!s1{iYu0>Eh z0$Ofj0XnD`d`lRpYlU-lgOQnu1!$&_z!WrS$sx{^1<KCmCMH;#jG*m#mIkJvF@FOi zv<>S<;PYd@a&G#d#RDp`mSGlIhUTDqY0WK+OpGneO-=Ew?FEfygLXNYS`y0YxJTQK zLHQXprHQ2(Z>|U0B?#Iv0G{tdEwaD|$bRFz>ShrSijn2u7(vM+#>SwE)Xdb<($K=( z!qgB?k!1=x)xpAoKqX>qfM={7l%Wlbv0V{nVxebX1Uj4;G=FD-UWtIukNwVB{+A8B zY<vZl7%>DjXpKOZNP~B=;>#i?rpAWGM#dJVgfcsxdL6W0$;b%XIt>%h>IP#_qY+eL zqHilU2i5C8IE`O&tN^90l~{ZNIzrzJv}nxI60{Hq&vI)cV+(UjL(rBjLe(Ljirrk# z$jI2h%oKBVgNcQnxw#4Wo@YxVL-aKP;1gtja!#1L1$@@rDl9&+0PPVsG&cs_`D$p4 z=axn@@MVsmv&{%}NR08EAZu){2dcWwjIiVqOFcsqOVA12re>yQ=-YA4K^6Ni&Jz1A zTR;WyYH$IJl1q$?K-aN?w(^3;d+_c31T8EyHZnFdG{rw6WQ^woS!2+ZfR+X(*k+(D zK?jzC*AJT;gHFmo>Fa_|kp0a$^}oR)69y)ZHJDLiU;&Cw&;eYalPL``CfB&`O%Cj5 zU;$mEAPTui!N}0k(9*=f!i>PSLt{KA$r@Ye8Jn1ZT5XuEU`ss<OEb{s8w=1T3A8yj z@JX_NIG0^EH2~$7wU{0<0`+MOKqq#X7?~QFn&Ij68X1DlP5`e$#ot&l#8b&z=$V@u zfDW6&@QJB`9%wrsXn}yKi5c2?hDPASWdCx$Ut<^q^2s_(pBRER&ly>ogN9R#P0S4N z3_F6Z3pFq>H8V8Bzg)xE5cg7eV@psQ(cIDi)GbE3`d7%%&=kB+$pmz;ml0?Q7h0VH z>c0Qu^z#Y=AA!9dGq)I;SQvn|T9{f|f-Y^u6D5Y0mZqT6*oeRhXU2xOH@bnA$$+ki z$8z6@sUhg}Nl??y)Xc&FeZPn~sQdn()8vQab5OS5fW;$521cO0fS@&Zmge{lG&Hm{ z0-Y#hU}8d`PBFw?%bOU07Lgl*E+j{9K$;rrnHd_ITUwZdwo90z9UcNcPqu+;@#{)! zP%Xa^vz9kBH3ao%K=;pq_J8B4Qb2=xhUONa<w6893GTh?pv5Idpz}R2^N5ii=on4| z14|Rob>nEO9KgrPHgc_=)#C_?kWJtSL1{l4nOYiJf|iRKg2u%`cQNA}bOePK`0yJG zLV3gj=TM!Afgbq2Wz6Lorbc?E1{Q|KW}qmsKwnl0K2ElYYv~(jVUR~QV|v8U093J> z85mg_TbLLco8eh_VrXs*I=UQmoH2nI!ClFl80vwp^#z@~h`t!!)JP9>C98=EXk9k? zLLl&Yvdvr!7H7AEmicbMT;^+FX#pw@O^q#0j7?1NT#jvK2s)(L#L$w!1)9cqPLl;K z$S?*sNH97kpou5Y(YD5*@h!9yKaIeL$+mE5t(~?XltH$FGYCq;GBh#;9d2f9ZUh?C zHZsN+AE1NcOe`%;%<zw<7#rbUD`#Q^x>E#nM+Zi980&$Ki8BEua7#<Hy$Rs6WLvr3 zGf9FE?cataU4c$31>Ff@Xleo4%a6|=rl8ANKuco@bWDtJ-~R%d4l%Jb0}rjD)gho! z7DHnLOG5(-(6VUMIs|-{Y#Y~y1B{`d46+^U5!4nJsQYIITJ2|PY=HMjMne-b3()P{ z#ssFWK-;o#jb)n{>luO0vBxqdWNM-Z+8<<WZf0zXad5N|_$=9Wt^-2Gq9Bj#0DA;A zWf_B;KA^>8CZGjm_+rEaR34a^8k!R5yBpzNDQ9A=XJ%qzh-JdZ)Km|&rOU+B5_E@) z8QKUi_$=8Du19~aaDqIt6Prg&jLghUz{l|$nt|@0$6fXsgXR;>j0^}IfMSg2ELjs1 zJtG5Sa|0}=_M4jOnVW)EeS!Cdqs_sAkCN@=3eM8|0P@H#ut!jmmVt>G=o%YiV-wJp zEJJ(|Vq|V$1`139XObHm;i=V4^vujmjVz2YM<Gnj^o$Ha2e+G8n1eS6qcrBhN6B_^ zt?ho43@WsCg9|Mbj~JSo7=p&YEiFt<O)O3D9BpQ31X>RbQis0^!E=zTiK(8UfrXJF zc7K?eT3Q&Hn}8ax=q+FHL9*Rk^2LSwK`q}sSX#cupaa@KM`>7?TUvtlyx>k*hM+T} z4MD?T1bl+K?+zNT2F+y{VxIMB3L4%rFtjiQom2!`lZ_f9puT$#R{={<6UZlfF@0iW zXlh~xy0hKT)ZEC-0^f}gh6d(_=H{TW8~l@^#zuImbyGbHP~tMd?D3kKLuz~rBQsMo z1530)VDL$@y<9dO^Ok@z$v$u<K`pjGgE1zcDFy>G&;=J}xCe#|4Gc_;K@<A~1|jeq zBnuj_Hn#*F5scYn1f9EM2s*LI$k@aZy$x>(>bm!Ft>%5Q1r#OwF{1?Bm^CyuH8wLe z16^N*XAy(}=<+v1a4#Q!;=*%~tcjVPiKQ8+Y{B%2g`R<lxuuDPF=!~y7_AWxK1jBo z>#D$6MUYPpVDX8Gg(YZhijk!yXc8LVaEgJ2xsi#1v4w#l{>emRJSWMTnCV#<m>Yn$ zJYjT4EcA>`EzCjfRx=ATL$ppi_$b*4Tq2X-F9Q`^2eA}fCKi@vCWhvgX6BaWriOUB zBcP+aEsTvUObE5&@th=UVy<Th+OTPed9kLcg&t_v4d_C2(CNRZjTG=nvJ<&F)9cTH zGRYw<nZ&@v+}Oy%%-k5X)B?284(D*T0ccOHfvK?}f&QT}?jE~|xt@uUg(0XBk0nAt zJFQGi%*>6<K{q|3mRq16`y?*k@TF@(5pozDAt*=e7#o|J8=D(}_L*3k;%odGn3)@y zg7zd^5b_7^4!a2`N1KCAlEus-;FGk#({F~LfgQ960d?3Xb6paO-35w}BbX5aI^`2I zo?vKc0UFlEciuf{zc%QMR|5ivn;GLdN)|L|4Z7(GTN}kv&&<HW$P~Pp3av^s2A?E5 zh3lzXz!gwlKZ+%<gSz`hpgm!ru|z`?JYy&Zrp6YQ7RE+|4k<RqbCN7*%-YP{2y`zB zM$)p>voy4@0OfZJP!d6j5@Ya5vQxRHB|X;%MaeO6l%O<Hj6lccn3z}^8W@2l81RhC zgVwDW8d(~f5gG$F##6Uj=$V1$_OTo!Yi0mCP};y4bhCwpnJH@f*BE?|>@+Uf;}bT3 z^2l*;9zpSlp`|hSE;Z2D7HBdK_pB)Brbr`03riyctAvb=EpZP$fEGHMn44mr=3)j~ zC2eMG4%$@?I@uO2LO^TjrgJ6N@LdE&$O&+Spw{drhGs@)hUVtRrlw{l<_4CyYjy); zV+$iw&{4qn>q9)}$eLK{8Ce<|VmtoY%s|h=#Khd#)Y!rplwZ+20;<_(a5V?rj01V( zB&J6|Ct4esgKp3>u(U9=Fu+%{gU&ZI0v-H8pl4-*r_T<`(I%FrnB%2phI)pec?C-Y zP|TyPZZrlTBs-JKS}f}>D6^l!%<M)MMh2Fa76zu~=0?T_CZ>1}6fgkI&4bRcF(uGx z$8(UZ2`EP!n^<6(CowbBGcf}l<7Z@SYJ^^o7=sUzoyBEd>=X=&lG9kC#0<2n4RjKf zrIDc}=p<U)6(Z<_4$uZ40;4E+4w5wm<!BSo)?18<#LQ679CUh!nYn?nA$s%I7<`iK zY_4k}H^FxXp23U~LlaQCvM{v-pB4j}EXUa;F)%O#CqF|=0_|TD+*P|NC{G)j7?@zL zr85H!nSv%3%t37>w6%1`;FDzMaLrg#$_pyC&SELHK-G}3xuvC<nI-7<3OvP@fdOcB z6lhBof$Wa^Xc|*co;EVWa&L;6k)E-oi4n*priSRNQjEa|$<E~xD=0e&N?PYIla>+a zn0(M?ZxaL1;F~4x=@C;)OJh?b(A|Ut7H%1vnBgpcK~o2yvwARRMa_)#KzD3_7U!B9 zni`?@tc<}2$<E_?kSGB@gz7xlBPjKVF=#ulfrXKU5ojqBo<-TFmKJ8_pv#R7ObF!> z+*9tRpd4*zVq${X*)=oPGcYs;Ekw33H8nR!9Y-++pCmh<tDR?N8Yo6CV0y&B+{6Sl zq+n`h1nQFDUS4BrX#u)M(!#>noItD51b5AD3d+&OCKgz3Xf`v}Gd40cG%zqRGPE=> zMIAIX2A?Fmfa|>GhX#;GE@JbDrMan*vAKx}=&EWw*T0xrf?E0pMy3{o#u`m<ciK%s z85*>d5_49;3^aIW06Or;(9FyLJ+Ffgl3mCpyKtT%s3N(9rPMMqG%+@_0Nv7I0?ukU zGrOs!nHgx7(%g(thXl`QvZkOcZE0wL<sut1V?9e#19Q-ntFeUzMwEc+_C;K?M7?}L zKDmtP6C(o?1JFfv78Vxfpz}-d<#y2haTW%~rbYyEi7D>uUra%H+6*)#gISZ9=z-1{ z1f6OCzQ_=@l>$Cbb}`o(??v*U^7jh3{6%SQflfa$H!}d8#t%C63(wvKQ%h5010!P- z&`w_b1u&lTWKE4h>u3zjFi+GnGtmPNN*Nninp&bA0%#0APj(5{5r!ylP$s#GnMn*S zKsSVe24V~hK~vy(l9q{?5op=7C4oafjqw~O3!2U`23_5TrPwmjvj7dDm>F7{f(jtC z2m!5<U&@ulnSTzHw60+$Ezm+CbI`D>rKzEbp(UO(H%vh{B!Z4SBsjHTil=G^<!M6` zb3@GWUo+5%yfNq+M`I%c(2=vqy>?^piL%SMYWKebpRIl!93?18%h24&z{~=4N2s}( zrHO$h?vZRzgqvBKnpqkUI2gg$6i?j_%G1UM=2#lQrh29ZCT12Emgb-f08!5hGByNt z+m~~duFALrijo_cQDS5Px>?@b0=y2|*wPqxOWqW;_S*n-u#5?TX<bv?L-M93dPZgj zmd02X{F|BTSr~%Wa9S7{nV}zpZ45q9b_G{cPseu93gDZVD}W6x3=GUchkjXr);^fy zE4B<R4Gm3A%?%6))QP5`HX-(X3#OnfZD4|VA)1+)o}rPE0qArn6Jt}fuC5Vik^D+7 zri29%p!m3j86Sp*CdQ_QCYDCV=B9?AX)ipP-O$L`(A)sD?1?~`g{Nva(X#*@gNbD+ zikX?7iLn7_z|#<XAO>n?Hv$dFui|?C=nVLf_}iF1F$P^}XlY<!VGKG}))>zv=BA*Q zgQ1ZH=#(S^KEYGBo9Y=_SQ?vROIc=m=Aa8cK}W)w8kwQBwv0gC_SIb4&*$)f%HKPf znH>}tpj%VSjg3vfmt5eE6Y#BmMxa&l1bVw>2Dsb5rg|op7M6xsGP}8+fvExLxOxL) zL(q&rN~r}tO?C}e<+C#xpu}|-GfF_mh#G(nhA;&WV&H24TYyHMK>I)lm0Ea?lQlKf zvoNqQG_b%jk^;J$z|!2v$js2h2z|||u@UHCnzdXZB8`=xs{I~j)ec(90zNjx#L&ph z0<_K;S0~Zb!UA+lGiWS@z_LIy+>`C5piFISXn-ZVn}g0eG&eG|1fRl+mPtTo&aLC( zwZ3`=l(g=HlNL&k1auseskwoLsgZ@DnIWD*Q&S6b3nODo6HxCMe;zTzy@bvbl%>rr zK?jhbk2RW^>seY@ni+tmLqYTZXdVGo?d!SNy7PB~lGXz(Nz1~-(7@E#(g<`8v6&&B z#eksM3ljq~OG67ntwubj$(n+)G^k&VxpB<Q0<;(qbOV#InXwt#0&`>ViLx8GqWQ!= zgQDaimMAeZ1nmYhGBUL=2k-5{owCeKOwB+6Mre-O4EKmUXxbAr7Kr7RW-|-WI5y~R zZevT(nm)8B0afiAxs)axRtI_H5!fRrZ4?7b&~gS)8^-{2wWbB0HVUXuWCS|;lVFtK z>9(7Lj`IdBtiecI7NFC-%}opqLHBoCpw3wtgHM#*#I<-?68QMi$Cw^5GBpF83T9#o z+S+4eY>s=7&eX!xzyfpymysc%@)!3SI#Y8!a}#qjL(G|7Gth{tr4i_eGgHv5eyA}5 zK2dfvmu0)mEzpXsC*T!Zs4-$;Xl7<&3Yr`=0G*zXr;P$y^lW4R8h9blMll2B032-; z3q8>EFqZxZXgt-_#K6SR*aEa}7o{2jA1AwoYu>_HKSADj3ibv{p#?fu-4Zl#Y6zME z$6JdSn;V*1nwpstnpZFb4ff#lg|V5TF_tbnXfV~t61275!UVLR8`T@2YJDr0wtU}V zP?7ZvOOa({YGP<<X<}k(WMXb+YJmF)R?w+P;GuM5V*)D%@Ej%!p71m`wlu@^iMfFu zX!yhs6yF9G7HAC=@L{ssxR&kIm<Y=0&oMIy=q6cXGXqN_GfN9ob9~#VO)Wqh#taQW zqu%(d5p&$b@un7fmgZ(ASc)uj13gnvkHXT@!pzj%2z8OEG59dq?OdOG{<DER@&eN% zpc_t&OpPqf4J|CpK{Yp?mKJE82<WsyLc{Uqc&c^KoTn*h)eCx&1v;|B*xcCI($LHZ zw2lKUr-SPC9bB(|{{=VWUt*>$14|Q26GI~-Lql_O&@~CT=iWdYp+HM`OpFNiM(`Xa zYig+nTJddah$U@-W=KGDB*uou#-PKcQF95XV&BR2XuVw`C`w*oMv0-JC1@#@v8g%e zwn;-g$Hbdj7(kEnBD6)+98aGel&L|t=3s6=HV2KTnuE3<o0?jpUC?X{K2CNQSBs<P zWl(m1jTt4Nlkm(e%q)ySmpFo!XyQ&==9Zu{NDPb#9k34S)Zkjz2%7T*&xd0+<IN5A zK&Og;wlJBP8>3HJ8G|bJ-CRBfeiHlH89Cl?TI~cKZgyk~=y0=+y-T)WJ>1O1$kNON zbODpGlpOluX1vA*CKjd!#ug?9dS>S6r<<wbIo*uY(89pP(nQb5T#Ap2EjKkczo@c_ zk=azwQc9Lf5Om0l9z;;DsJPhIsfm%@$kN18&%~0z@n+my%*h3%O^nQjdX~6PH?sg8 ztOY()4DCE77SO?QFnyTkF&Tl5P6F#gJC2FPK+hO1hj!i&NDgiv+Id4P=6aT9F#F6< z4>4mg&_kTUhIty3A^a3J?B`U0or!i#734f6=m}34N1Pez8G}xQgB&=97BI{PdPcDG zozRasLpe3e5G`bw4fNm#Lm6U*j3N9iE<^O70Y?SQt(akh<W{u6VK&e+gu4|ja3FyS zGZiy<j6g934gvI2&X^7K5OSEIV*x+L3@zC(gU)DzT8Mtc86>&EBr!wB0F<U6u0abO z@Ih6$&NwqP0G+l6GZrm$Sio6TiVI>aTJSI%=poKyLkk^n06+~zKjRFP1mK}#j2Sxc zbcKG%8FE}1qa_`Xq44B^e#jXlDMP(sj2SxcGw09`IYTuSGjI&RM_qvqmNP~R99B!v ziAS)Mh2@kpBe<m|SWh{Fx)%MEGvvI5e#jZfoA7|edde9zMoh4z9)xqy!UvS@5R#aA z3&|sx0c37W^OMfR&`&yJH8a;UF_)6Vb<`PD9__3%3((E8Qqo+4s0Wv&gDMDCh$NP? z&P>3^+@WeINd=uP!)j^_as`gF&OogQ3qog|K@{OS>&(&sRKuxoNuk<akYAo!6p&h! zoSIkC#K;O(#TwbZ8Ppzmi={mRx;@L#2(;zI7<82(o+ct_Sliqbbc!>9r6+g}g$J!& zGBXD4mBW~4GdI!$jfaD75;rnN-)w9QJ`{cr7oXg`RiKggci@qClx{8PtZpL<&|r%R z=s+M7Bb>{cOwBEf49q~SD+0Y*@C{Vh`-7mhOXj9nZf!I-(gSUiFf%bQ1Z}NBZL)(8 zgx||myy@v<P<*_{5+8=<7N(}gM#d)Q7N+KwcovYGnuF{&2d$|iFr<j*KzPu~CD0%% zmhB?uMxgO(b4zn03(&q<v|beWK=^%J#!n)^lT#nCG}*!D`&*b88G??#F~v9U30m)I zVqglow~jz}&=Ti(wV9zF=t5je&_D$0P9$?<Jp<6r9nfwRV^d>vkAQmU`?)3@HkAVP zJw9T3#K6+r+|0n#!py+T!ob)BU*E&r%+T1-+yu021HVV`90+d)I&|2?(%b~|k`!~$ zsYqs~78al#Md<4_z~{jq;5wDP#Tw+1PnaG7ooEL->J79-&dAWr0MAgIIp`WF3kw5d zLMs?8aL=im8R>zRco`X(VQkhj2OV@~VP<S%2D-flZF<TCH12+o%lp>H9iU9|88ed@ znOPVc8e5o{gVwNtw%p?BM46bIn3|ZF84+4}g6BYZGw@zd6LTyp|IESnJ{f?nYXM!p zj-IwaJ@i9dGYxl#fqe1>(<g?;2IiKQ7MA7)hNcFVCivzH%|SWD!~|5p5lCCOhu+PM z^ejQ^+_CJ}GdIyQF*P!^1Rb(&X@PdMy)pPe_`_Ug_j6T1iR&w7;sQ-Xn}W6rSQvn| zDVXA3({E~SYz#Vt%fO7lJ>SN74ul6S`7tmy!7>+ZZlY&lYHDC%0ony=fOZ9%u?c7? z{1Gn8Zyj2oNu6()lRAcG;45_uz+2cXKwBGe4!xTjnVA`yn^+nWI-|w{_oTX+v7Wi1 zp@}7y+-|C8WM*t=0J>nr7=64Nd?5T$uI`w%DWLJu@8I!Kl=={Knt~~4m9Pcq!VOac zV=h%L-kj9LqP)z!^!TDg&=C*9;3FPP%|X|h8<-jrs7EYt�T3=oy-uniyia{K4E* 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�_)`FX$3h3p_&)pnwD&#BV_0RsvJp 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 Vix?ReNqzXt#=yw&-)R#g0{~BeH#q<R literal 0 HcmV?d00001 diff --git a/wandb/run-20230709_160458-humans/files/config.yaml b/wandb/run-20230709_160458-humans/files/config.yaml new file mode 100644 index 0000000..7c2f036 --- /dev/null +++ b/wandb/run-20230709_160458-humans/files/config.yaml @@ -0,0 +1,37 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + python_version: 3.10.4 + cli_version: 0.15.3 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1688911498.388557 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 2 + - 5 + - 13 + - 14 + - 19 + - 23 + 4: 3.10.4 + 5: 0.15.3 + 8: + - 5 +optimizer: + desc: null + value: AdamW +learning_rate: + desc: null + value: 0.0001 diff --git a/wandb/run-20230709_160458-humans/files/wandb-summary.json b/wandb/run-20230709_160458-humans/files/wandb-summary.json new file mode 100644 index 0000000..e4461f6 --- /dev/null +++ b/wandb/run-20230709_160458-humans/files/wandb-summary.json @@ -0,0 +1 @@ +{"loss": 0.01867721416056156, "_runtime": 4059.905727148056, "_timestamp": 1688911967.4497662, "running_loss": 0.047499893636495684, "learning_rate": 9.999798939653173e-05, "_step": 9413, "batch": 843, "epoch": 0, "_wandb": {"runtime": 4056}} \ No newline at end of file diff --git a/wandb/run-20230709_160458-humans/logs/debug-internal.log b/wandb/run-20230709_160458-humans/logs/debug-internal.log new file mode 100644 index 0000000..a10f0e5 --- /dev/null +++ b/wandb/run-20230709_160458-humans/logs/debug-internal.log @@ -0,0 +1,4147 @@ +2023-07-09 16:04:58,382 INFO StreamThr :245701 [internal.py:wandb_internal():86] W&B internal server running at pid: 245701, started at: 2023-07-09 16:04:58.379723 +2023-07-09 16:04:58,383 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status +2023-07-09 16:04:58,395 INFO WriterThread:245701 [datastore.py:open_for_write():85] open: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/run-humans.wandb +2023-07-09 16:04:58,398 DEBUG SenderThread:245701 [sender.py:send():375] send: header +2023-07-09 16:04:58,445 DEBUG SenderThread:245701 [sender.py:send():375] send: run +2023-07-09 16:04:58,450 INFO SenderThread:245701 [sender.py:_maybe_setup_resume():761] checking resume status for deep-lab-/Unconditional Landscapes/humans +2023-07-09 16:04:58,683 INFO SenderThread:245701 [sender.py:_maybe_setup_resume():833] configured resuming with: ResumeState(resumed=True,step=8569,history=8569,events=119,output=0,runtime=3590.844518,wandb_runtime=3588,summary={'loss': 0.006437242031097412, '_runtime': 3589.605794429779, '_timestamp': 1688855478.0541804, 'running_loss': 0.012675670010337864, 'learning_rate': 9.979864405611204e-05, '_step': 8568, 'batch': 843, 'epoch': 9, '_wandb': {'runtime': 3588}},config={'_wandb': {'desc': None, 'value': {'t': {'1': [1, 41, 55], '2': [1, 41, 55], '3': [2, 5, 13, 14, 19, 23], '4': '3.10.4', '5': '0.15.3', '8': [5]}, 'framework': 'torch', 'start_time': 1688852039.597313, 'cli_version': '0.15.3', 'is_jupyter_run': False, 'python_version': '3.10.4', 'is_kaggle_kernel': False}}, 'optimizer': {'desc': None, 'value': 'AdamW'}, 'learning_rate': {'desc': None, 'value': 0.0001}}) +2023-07-09 16:04:59,027 INFO SenderThread:245701 [dir_watcher.py:__init__():219] watching files in: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files +2023-07-09 16:04:59,028 INFO SenderThread:245701 [sender.py:_start_run_threads():1124] run started: humans with start time 1688907907.544039 +2023-07-09 16:04:59,028 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:04:59,030 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: check_version +2023-07-09 16:04:59,031 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:04:59,032 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: check_version +2023-07-09 16:04:59,161 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: run_start +2023-07-09 16:04:59,166 DEBUG HandlerThread:245701 [system_info.py:__init__():31] System info init +2023-07-09 16:04:59,166 DEBUG HandlerThread:245701 [system_info.py:__init__():46] System info init done +2023-07-09 16:04:59,166 INFO HandlerThread:245701 [system_monitor.py:start():181] Starting system monitor +2023-07-09 16:04:59,166 INFO SystemMonitor:245701 [system_monitor.py:_start():145] Starting system asset monitoring threads +2023-07-09 16:04:59,168 INFO SystemMonitor:245701 [interfaces.py:start():190] Started cpu monitoring +2023-07-09 16:04:59,168 INFO SystemMonitor:245701 [interfaces.py:start():190] Started disk monitoring +2023-07-09 16:04:59,169 INFO SystemMonitor:245701 [interfaces.py:start():190] Started gpu monitoring +2023-07-09 16:04:59,170 INFO SystemMonitor:245701 [interfaces.py:start():190] Started memory monitoring +2023-07-09 16:04:59,170 INFO SystemMonitor:245701 [interfaces.py:start():190] Started network monitoring +2023-07-09 16:04:59,189 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:04:59,190 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:04:59,343 DEBUG SenderThread:245701 [sender.py:send():375] send: telemetry +2023-07-09 16:04:59,343 DEBUG SenderThread:245701 [sender.py:send():375] send: telemetry +2023-07-09 16:04:59,343 DEBUG SenderThread:245701 [sender.py:send():375] send: config +2023-07-09 16:04:59,343 DEBUG SenderThread:245701 [sender.py:send():375] send: config +2023-07-09 16:05:00,031 INFO Thread-12 :245701 [dir_watcher.py:_on_file_created():278] file/dir created: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:04,344 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:09,349 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:14,190 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:05:14,190 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:05:15,280 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:15,281 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:15,281 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:15,281 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:15,286 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:16,045 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:16,934 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:16,935 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:16,935 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:16,946 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:17,046 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:17,384 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:17,385 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:17,385 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:17,403 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:17,800 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:17,800 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:17,801 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:17,812 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:18,048 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:18,212 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:18,212 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:18,212 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:18,224 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:18,620 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:18,621 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:18,621 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:18,632 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:19,034 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:19,034 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:19,035 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:19,047 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:19,048 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:19,458 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:19,458 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:19,458 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:19,469 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:19,864 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:19,865 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:19,865 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:19,876 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:20,049 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:20,260 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:20,261 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:20,261 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:20,279 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:20,709 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:20,709 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:20,709 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:20,710 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:20,721 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:21,068 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:21,116 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:21,117 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:21,117 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:21,136 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:21,531 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:21,532 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:21,532 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:21,551 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:21,943 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:21,944 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:21,944 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:21,963 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:22,071 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:22,363 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:22,364 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:22,364 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:22,376 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:22,772 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:22,772 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:22,772 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:22,783 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:23,073 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:23,189 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:23,190 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:23,191 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:23,203 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:23,596 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:23,597 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:23,597 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:23,606 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:24,012 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:24,012 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:24,013 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:24,024 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:24,074 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:24,431 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:24,432 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:24,432 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:24,443 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:24,840 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:24,841 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:24,841 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:24,852 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:25,075 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:25,264 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:25,265 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:25,265 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:25,280 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:25,694 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:25,695 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:25,695 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:25,706 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:26,097 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:26,108 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:26,108 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:26,108 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:26,109 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:26,119 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:26,517 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:26,518 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:26,518 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:26,529 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:26,935 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:26,936 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:26,936 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:26,947 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:27,102 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:27,341 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:27,342 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:27,342 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:27,361 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:27,773 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:27,773 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:27,773 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:27,784 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:28,122 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:28,189 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:28,189 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:28,189 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:28,200 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:28,602 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:28,603 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:28,603 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:28,615 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:29,025 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:29,025 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:29,025 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:29,040 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:29,124 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:29,190 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:05:29,190 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:05:29,426 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:29,427 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:29,427 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:29,448 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:29,859 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:29,859 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:29,860 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:29,871 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:30,129 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:30,269 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:30,269 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:30,269 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:30,280 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:30,684 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:30,684 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:30,684 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:30,695 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:31,086 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:31,087 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:31,087 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:31,106 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:31,130 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:31,498 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:31,499 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:31,504 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:31,732 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:31,739 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:31,915 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:31,916 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:31,916 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:31,927 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:32,132 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/config.yaml +2023-07-09 16:05:32,132 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:32,342 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:32,343 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:32,343 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:32,354 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:32,751 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:32,752 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:32,752 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:32,763 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:33,143 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:33,158 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:33,159 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:33,159 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:33,178 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:33,591 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:33,592 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:33,592 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:33,610 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:34,021 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:34,022 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:34,022 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:34,034 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:34,144 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:34,439 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:34,439 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:34,439 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:34,450 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:34,843 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:34,844 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:34,844 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:34,862 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:35,144 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:35,263 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:35,264 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:35,264 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:35,275 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:35,670 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:35,671 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:35,671 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:35,682 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:36,076 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:36,076 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:36,076 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:36,087 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:36,145 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:36,475 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:36,476 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:36,476 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:36,493 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:36,882 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:36,883 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:36,883 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:36,883 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:36,901 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:37,147 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:37,307 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:37,307 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:37,308 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:37,318 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:37,720 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:37,721 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:37,721 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:37,730 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:38,139 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:38,140 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:38,140 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:38,152 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:38,153 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:38,555 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:38,556 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:38,556 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:38,572 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:38,986 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:38,987 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:38,987 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:38,997 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:39,153 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:39,406 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:39,406 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:39,406 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:39,417 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:39,835 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:39,835 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:39,835 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:39,846 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:40,172 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:40,231 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:40,232 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:40,232 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:40,251 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:40,662 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:40,662 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:40,662 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:40,673 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:41,078 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:41,079 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:41,079 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:41,090 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:41,173 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:41,478 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:41,479 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:41,479 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:41,498 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:41,901 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:41,902 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:41,902 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:41,902 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:41,914 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:42,176 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:42,293 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:42,294 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:42,294 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:42,312 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:42,704 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:42,705 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:42,705 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:42,724 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:43,126 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:43,126 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:43,127 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:43,136 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:43,176 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:43,540 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:43,541 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:43,541 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:43,550 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:43,948 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:43,948 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:43,948 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:43,959 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:44,177 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:44,190 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:05:44,190 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:05:44,360 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:44,361 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:44,361 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:44,372 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:44,769 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:44,769 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:44,769 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:44,780 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:45,172 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:45,172 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:45,172 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:45,180 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:45,182 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:45,590 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:45,591 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:45,591 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:45,602 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:45,997 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:45,998 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:45,998 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:46,009 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:46,181 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:46,406 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:46,407 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:46,407 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:46,418 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:46,832 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:46,832 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:46,832 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:46,844 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:47,190 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:47,245 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:47,246 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:47,246 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:47,246 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:47,257 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:47,654 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:47,655 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:47,655 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:47,666 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:48,060 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:48,061 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:48,061 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:48,072 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:48,193 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:48,466 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:48,467 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:48,467 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:48,478 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:48,865 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:48,866 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:48,866 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:48,884 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:49,203 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:49,284 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:49,285 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:49,285 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:49,296 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:49,694 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:49,695 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:49,695 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:49,707 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:50,096 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:50,097 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:50,097 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:50,108 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:50,205 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:50,505 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:50,505 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:50,506 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:50,516 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:50,911 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:50,911 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:50,911 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:50,923 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:51,205 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:51,320 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:51,321 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:51,321 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:51,332 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:51,727 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:51,728 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:51,728 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:51,739 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:52,192 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:52,193 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:52,193 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:52,204 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:52,206 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:52,593 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:52,594 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:52,594 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:52,594 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:52,613 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:53,016 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:53,016 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:53,016 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:53,028 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:53,206 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:53,426 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:53,427 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:53,427 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:53,438 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:53,823 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:53,824 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:53,824 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:53,842 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:54,218 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:54,244 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:54,245 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:54,245 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:54,256 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:54,667 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:54,668 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:54,668 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:54,686 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:55,081 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:55,082 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:55,082 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:55,093 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:55,221 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:55,489 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:55,489 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:55,489 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:55,500 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:55,896 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:55,896 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:55,896 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:55,907 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:56,235 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:56,297 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:56,297 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:56,297 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:56,308 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:56,703 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:56,704 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:56,704 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:56,715 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:57,100 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:57,101 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:57,101 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:57,119 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:57,236 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:57,521 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:57,521 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:57,521 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:57,532 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:57,927 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:57,928 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:57,928 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:57,928 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:05:57,947 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:58,239 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:58,354 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:58,354 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:58,354 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:58,366 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:58,774 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:58,775 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:58,775 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:58,786 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:59,171 DEBUG SystemMonitor:245701 [system_monitor.py:_start():159] Starting system metrics aggregation loop +2023-07-09 16:05:59,172 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:05:59,187 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:59,188 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:59,188 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:59,195 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:05:59,197 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:05:59,197 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:05:59,240 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:05:59,592 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:05:59,593 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:05:59,593 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:05:59,612 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:00,019 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:00,019 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:00,020 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:00,032 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:00,243 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:00,443 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:00,444 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:00,444 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:00,454 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:00,860 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:00,861 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:00,861 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:00,872 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:01,253 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:01,278 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:01,279 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:01,279 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:01,298 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:01,710 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:01,711 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:01,711 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:01,722 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:02,120 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:02,120 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:02,120 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:02,132 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:02,253 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:02,533 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:02,534 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:02,534 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:02,546 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:02,947 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:02,947 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:02,947 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:02,948 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:02,959 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:03,264 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:03,363 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:03,363 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:03,363 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:03,375 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:03,770 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:03,771 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:03,771 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:03,782 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:04,183 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:04,184 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:04,184 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:04,195 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:04,265 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:04,590 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:04,591 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:04,591 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:04,610 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:05,006 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:05,006 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:05,006 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:05,017 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:05,267 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:05,420 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:05,420 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:05,420 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:05,432 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:05,889 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:05,890 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:05,890 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:05,901 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:06,268 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:06,442 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:06,443 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:06,443 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:06,454 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:07,067 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:07,068 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:07,068 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:07,084 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:07,270 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:07,547 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:07,548 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:07,548 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:07,559 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:08,150 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:08,151 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:08,151 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:08,151 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:08,170 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:08,271 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:08,662 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:08,663 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:08,663 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:08,674 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:09,113 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:09,114 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:09,114 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:09,132 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:09,271 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:09,691 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:09,691 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:09,691 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:09,703 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:10,194 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:10,194 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:10,194 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:10,206 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:10,276 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:10,793 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:10,794 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:10,794 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:10,812 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:11,290 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:11,355 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:11,356 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:11,356 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:11,367 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:11,915 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:11,916 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:11,916 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:11,927 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:12,291 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:12,478 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:12,478 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:12,478 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:12,489 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:12,958 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:12,959 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:12,959 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:12,970 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:13,293 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:13,554 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:13,554 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:13,555 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:13,555 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:13,568 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:14,098 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:14,098 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:14,098 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:14,109 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:14,196 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:06:14,196 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:06:14,293 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:14,677 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:14,677 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:14,677 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:14,689 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:15,261 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:15,263 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:15,263 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:15,274 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:15,294 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:15,807 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:15,808 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:15,808 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:15,826 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:16,312 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:16,366 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:16,367 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:16,367 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:16,378 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:16,898 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:16,899 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:16,899 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:16,910 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:17,316 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:17,501 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:17,501 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:17,501 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:17,512 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:18,011 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:18,011 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:18,011 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:18,044 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:18,319 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:18,732 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:18,733 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:18,733 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:18,733 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:18,745 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:19,301 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:19,301 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:19,301 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:19,316 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:19,319 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:19,914 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:19,915 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:19,915 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:19,926 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:20,322 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:20,451 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:20,452 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:20,452 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:20,470 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:21,007 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:21,008 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:21,008 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:21,020 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:21,326 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:21,595 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:21,595 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:21,596 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:21,615 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:22,233 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:22,234 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:22,234 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:22,258 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:22,326 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:22,857 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:22,857 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:22,857 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:22,867 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:23,344 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:23,401 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:23,402 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:23,402 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:23,421 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:23,916 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:23,924 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:23,924 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:23,925 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:23,930 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:24,361 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:24,452 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:24,453 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:24,453 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:24,465 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:25,030 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:25,031 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:25,031 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:25,047 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:25,362 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:25,552 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:25,553 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:25,553 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:25,567 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:26,160 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:26,161 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:26,161 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:26,173 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:26,362 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:26,689 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:26,690 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:26,690 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:26,704 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:27,324 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:27,325 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:27,325 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:27,337 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:27,363 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:27,886 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:27,886 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:27,886 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:27,898 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:28,382 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:28,382 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:28,382 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:28,393 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:28,401 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:28,889 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:28,889 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:28,889 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:28,899 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:29,173 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:06:29,175 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:29,196 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:06:29,196 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:06:29,405 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:29,482 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:29,482 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:29,483 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:29,495 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:29,984 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:29,985 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:29,985 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:30,003 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:30,407 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:30,619 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:30,627 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:30,627 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:30,632 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:31,151 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:31,151 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:31,151 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:31,163 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:31,410 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:31,786 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:31,787 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:31,787 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:31,800 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:32,350 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:32,350 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:32,350 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:32,366 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:32,410 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:32,929 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:32,930 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:32,930 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:32,949 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:33,411 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:33,599 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:33,599 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:33,600 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:33,609 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:34,120 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:34,120 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:34,121 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:34,132 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:34,411 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:34,686 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:34,687 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:34,687 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:34,687 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:34,706 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:35,343 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:35,343 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:35,343 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:35,362 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:35,412 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:35,873 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:35,873 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:35,873 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:35,885 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:36,354 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:36,354 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:36,354 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:36,366 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:36,413 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:36,862 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:36,863 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:36,863 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:36,882 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:37,431 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:37,487 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:37,488 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:37,488 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:37,507 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:38,143 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:38,143 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:38,143 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:38,155 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:38,432 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:38,698 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:38,698 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:38,698 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:38,710 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:39,273 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:39,273 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:39,273 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:39,286 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:39,432 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:39,841 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:39,841 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:39,841 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:39,842 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:39,853 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:40,425 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:40,426 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:40,426 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:40,434 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:40,436 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:40,955 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:40,955 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:40,955 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:40,967 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:41,437 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:41,625 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:41,625 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:41,625 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:41,639 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:42,181 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:42,182 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:42,182 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:42,194 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:42,441 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:42,685 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:42,686 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:42,686 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:42,705 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:43,333 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:43,334 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:43,334 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:43,346 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:43,441 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:43,895 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:43,896 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:43,896 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:43,905 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:44,196 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:06:44,196 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:06:44,469 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:44,553 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:44,553 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:44,553 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:44,564 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:45,115 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:45,116 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:45,116 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:45,116 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:45,130 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:45,470 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:45,620 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:45,620 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:45,620 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:45,631 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:46,146 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:46,147 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:46,147 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:46,158 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:46,470 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:46,774 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:46,774 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:46,774 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:46,786 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:47,312 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:47,313 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:47,313 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:47,324 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:47,470 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:47,793 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:47,793 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:47,793 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:47,805 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:48,304 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:48,305 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:48,305 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:48,324 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:48,474 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:48,822 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:48,822 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:48,823 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:48,834 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:49,319 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:49,319 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:49,319 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:49,330 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:49,476 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:49,789 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:49,790 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:49,790 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:49,808 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:50,334 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:50,335 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:50,335 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:50,335 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:50,354 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:50,477 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:50,939 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:50,940 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:50,940 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:50,953 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:51,398 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:51,399 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:51,399 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:51,410 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:51,478 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:51,937 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:51,938 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:51,938 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:51,949 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:52,489 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:52,495 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:52,495 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:52,496 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:52,514 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:53,050 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:53,051 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:53,051 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:53,062 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:53,498 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:53,594 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:53,595 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:53,595 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:53,606 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:54,221 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:54,221 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:54,221 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:54,232 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:54,498 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:54,696 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:54,696 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:54,696 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:54,708 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:55,203 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:55,204 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:55,204 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:55,222 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:55,502 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:55,750 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:55,751 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:55,751 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:55,751 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:06:55,764 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:56,334 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:56,335 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:56,335 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:56,344 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:56,503 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:56,920 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:56,920 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:56,920 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:56,931 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:57,448 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:57,448 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:57,448 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:57,459 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:57,503 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:57,938 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:57,939 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:57,939 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:57,958 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:58,515 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:58,531 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:58,532 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:58,532 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:58,543 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:59,051 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:59,052 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:59,052 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:59,063 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:06:59,174 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:06:59,196 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:06:59,196 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:06:59,527 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:06:59,569 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:06:59,570 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:06:59,570 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:06:59,581 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:00,057 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:00,058 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:00,058 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:00,067 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:00,540 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:00,592 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:00,593 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:00,593 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:00,604 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:01,181 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:01,182 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:01,182 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:01,182 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:01,193 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:01,541 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:01,755 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:01,756 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:01,756 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:01,770 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:02,320 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:02,320 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:02,320 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:02,331 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:02,542 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:02,971 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:02,972 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:02,972 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:02,981 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:03,551 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:03,552 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:03,552 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:03,552 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:03,571 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:04,188 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:04,188 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:04,188 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:04,200 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:04,556 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:04,814 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:04,815 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:04,815 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:04,826 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:05,397 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:05,397 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:05,397 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:05,408 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:05,556 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:05,915 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:05,916 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:05,916 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:05,934 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:06,464 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:06,464 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:06,465 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:06,465 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:06,476 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:06,557 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:07,086 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:07,087 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:07,087 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:07,098 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:07,557 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:07,678 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:07,679 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:07,679 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:07,691 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:08,319 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:08,319 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:08,319 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:08,331 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:08,558 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:08,939 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:08,939 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:08,939 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:08,950 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:09,476 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:09,477 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:09,477 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:09,488 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:09,558 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:10,034 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:10,035 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:10,035 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:10,046 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:10,545 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:10,545 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:10,545 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:10,557 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:10,559 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:11,150 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:11,150 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:11,150 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:11,161 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:11,560 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:11,775 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:11,776 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:11,776 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:11,776 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:11,795 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:12,417 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:12,418 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:12,418 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:12,429 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:12,564 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:12,974 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:12,975 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:12,975 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:12,987 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:13,515 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:13,516 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:13,516 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:13,532 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:13,565 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:14,196 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:07:14,197 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:07:14,211 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:14,332 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:14,332 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:14,336 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:14,566 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:14,859 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:14,860 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:14,860 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:14,874 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:15,398 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:15,399 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:15,399 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:15,410 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:15,568 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:15,969 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:15,969 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:15,969 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:15,981 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:16,582 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:16,673 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:16,673 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:16,673 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:16,685 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:17,318 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:17,319 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:17,319 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:17,319 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:17,330 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:17,583 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:17,765 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:17,765 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:17,765 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:17,774 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:18,288 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:18,289 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:18,289 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:18,300 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:18,584 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:18,868 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:18,869 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:18,869 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:18,888 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:19,378 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:19,379 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:19,379 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:19,390 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:19,584 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:19,907 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:19,907 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:19,907 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:19,919 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:20,377 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:20,377 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:20,377 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:20,388 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:20,585 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:20,857 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:20,858 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:20,858 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:20,869 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:21,376 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:21,377 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:21,377 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:21,389 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:21,586 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:21,947 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:21,948 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:21,948 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:21,959 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:22,471 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:22,472 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:22,472 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:22,472 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:22,483 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:22,587 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:23,069 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:23,069 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:23,069 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:23,082 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:23,524 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:23,524 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:23,524 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:23,535 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:23,588 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:24,131 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:24,132 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:24,132 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:24,143 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:24,567 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:24,568 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:24,568 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:24,586 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:24,588 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:25,080 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:25,081 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:25,081 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:25,093 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:25,595 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:25,596 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:25,596 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:25,598 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:25,607 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:26,141 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:26,142 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:26,142 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:26,161 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:26,610 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:26,690 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:26,690 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:26,690 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:26,701 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:27,356 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:27,356 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:27,357 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:27,373 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:27,611 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:27,916 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:27,917 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:27,917 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:27,917 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:27,929 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:28,438 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:28,438 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:28,439 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:28,450 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:28,611 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:28,949 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:28,950 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:28,950 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:28,961 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:29,174 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:07:29,197 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:07:29,197 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:07:29,407 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:29,407 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:29,407 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:29,419 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:29,612 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:29,911 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:29,912 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:29,912 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:29,923 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:30,443 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:30,444 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:30,444 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:30,462 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:30,612 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:30,954 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:30,955 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:30,955 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:30,966 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:31,561 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:31,562 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:31,562 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:31,573 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:31,613 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:32,146 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:32,147 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:32,147 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:32,159 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:32,596 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:32,597 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:32,597 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:32,613 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:32,615 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:33,163 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:33,163 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:33,163 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:33,164 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:33,175 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:33,631 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:33,724 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:33,724 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:33,724 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:33,736 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:34,223 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:34,223 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:34,223 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:34,234 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:34,641 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:34,732 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:34,733 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:34,733 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:34,744 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:35,363 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:35,364 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:35,364 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:35,376 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:35,645 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:35,931 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:35,931 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:35,931 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:35,943 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:36,449 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:36,450 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:36,450 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:36,461 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:36,645 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:37,016 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:37,016 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:37,016 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:37,027 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:37,525 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:37,526 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:37,526 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:37,535 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:37,648 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:38,089 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:38,098 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:38,098 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:38,101 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:38,614 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:38,622 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:38,623 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:38,623 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:38,627 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:38,649 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:39,135 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:39,136 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:39,136 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:39,147 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:39,649 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:39,769 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:39,770 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:39,770 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:39,781 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:40,345 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:40,346 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:40,346 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:40,357 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:40,651 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:40,813 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:40,814 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:40,814 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:40,833 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:41,410 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:41,410 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:41,410 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:41,421 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:41,652 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:41,881 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:41,882 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:41,882 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:41,900 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:42,466 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:42,466 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:42,467 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:42,478 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:42,655 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:43,020 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:43,020 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:43,020 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:43,031 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:43,527 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:43,528 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:43,528 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:43,539 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:43,658 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:44,129 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:44,129 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:44,129 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:44,130 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:44,141 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:44,197 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:07:44,197 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:07:44,674 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:44,722 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:44,723 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:44,723 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:44,734 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:45,297 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:45,298 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:45,298 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:45,309 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:45,675 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:45,829 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:45,830 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:45,830 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:45,849 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:46,403 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:46,404 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:46,404 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:46,415 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:46,675 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:46,885 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:46,885 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:46,886 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:46,895 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:47,412 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:47,412 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:47,412 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:47,431 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:47,676 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:47,968 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:47,969 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:47,969 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:47,987 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:48,589 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:48,590 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:48,590 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:48,601 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:48,679 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:49,049 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:49,049 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:49,049 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:49,061 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:49,682 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:49,683 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:49,683 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:49,683 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:49,691 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:49,694 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:50,200 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:50,201 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:50,201 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:50,212 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:50,671 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:50,671 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:50,671 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:50,683 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:50,692 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:51,236 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:51,237 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:51,237 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:51,248 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:51,703 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:51,719 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:51,719 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:51,719 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:51,730 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:52,221 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:52,222 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:52,222 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:52,234 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:52,715 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:52,736 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:52,736 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:52,737 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:52,750 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:53,243 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:53,244 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:53,244 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:53,263 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:53,727 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:53,791 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:53,792 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:53,792 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:53,803 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:54,486 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:54,487 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:54,487 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:54,498 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:54,728 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:55,077 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:55,077 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:55,077 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:55,078 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:07:55,089 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:55,627 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:55,628 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:55,628 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:55,640 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:55,728 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:56,172 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:56,172 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:56,173 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:56,184 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:56,667 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:56,668 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:56,668 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:56,680 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:56,729 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:57,115 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:57,116 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:57,116 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:57,134 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:57,617 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:57,618 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:57,618 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:57,637 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:57,730 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:58,173 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:58,173 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:58,174 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:58,185 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:58,738 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:58,739 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:58,739 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:58,747 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:58,750 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:59,178 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:07:59,202 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:07:59,202 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:07:59,268 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:59,349 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:59,349 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:59,357 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:07:59,755 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:07:59,849 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:07:59,850 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:07:59,850 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:07:59,861 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:00,394 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:00,395 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:00,395 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:00,395 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:00,406 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:00,758 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:00,934 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:00,935 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:00,935 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:00,946 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:01,506 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:01,506 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:01,506 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:01,517 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:01,758 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:02,099 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:02,100 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:02,100 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:02,118 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:02,632 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:02,633 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:02,633 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:02,644 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:02,759 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:03,149 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:03,150 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:03,150 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:03,161 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:03,662 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:03,663 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:03,663 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:03,682 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:03,762 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:04,183 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:04,184 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:04,184 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:04,195 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:04,762 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:04,763 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:04,763 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:04,771 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:04,774 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:05,280 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:05,281 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:05,281 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:05,292 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:05,782 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:05,804 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:05,805 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:05,805 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:05,805 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:05,816 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:06,556 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:06,557 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:06,557 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:06,576 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:06,783 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:07,208 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:07,208 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:07,208 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:07,219 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:07,794 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:07,848 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:07,848 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:07,849 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:07,859 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:08,389 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:08,390 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:08,390 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:08,401 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:08,804 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:08,898 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:08,899 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:08,899 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:08,910 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:09,474 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:09,475 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:09,475 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:09,486 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:09,805 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:10,061 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:10,062 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:10,062 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:10,073 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:10,518 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:10,519 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:10,519 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:10,538 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:10,805 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:11,142 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:11,142 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:11,142 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:11,143 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:11,154 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:11,691 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:11,692 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:11,692 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:11,711 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:11,809 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:12,261 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:12,261 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:12,262 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:12,270 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:12,811 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:12,937 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:12,937 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:12,937 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:12,949 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:13,487 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:13,487 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:13,487 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:13,500 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:13,811 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:14,036 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:14,036 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:14,036 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:14,049 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:14,202 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:08:14,203 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:08:14,645 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:14,645 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:14,645 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:14,666 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:14,816 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:15,257 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:15,258 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:15,258 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:15,279 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:15,822 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:15,862 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:15,863 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:15,863 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:15,874 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:16,408 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:16,409 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:16,409 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:16,409 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:16,427 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:16,823 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:16,946 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:16,946 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:16,946 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:16,958 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:17,525 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:17,525 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:17,526 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:17,536 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:17,823 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:18,034 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:18,035 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:18,035 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:18,047 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:18,520 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:18,521 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:18,521 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:18,540 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:18,824 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:19,056 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:19,057 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:19,057 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:19,068 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:19,567 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:19,568 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:19,568 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:19,587 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:19,825 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:20,121 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:20,121 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:20,121 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:20,133 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:20,639 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:20,639 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:20,639 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:20,651 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:20,828 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:21,262 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:21,263 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:21,263 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:21,282 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:21,811 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:21,811 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:21,812 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:21,812 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:21,823 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:21,829 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:22,341 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:22,341 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:22,342 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:22,350 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:22,842 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:22,932 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:22,932 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:22,933 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:22,944 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:23,429 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:23,429 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:23,430 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:23,440 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:23,854 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:23,915 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:23,916 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:23,916 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:23,926 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:24,494 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:24,495 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:24,495 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:24,513 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:24,855 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:25,109 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:25,109 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:25,109 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:25,121 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:25,649 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:25,650 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:25,650 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:25,661 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:25,856 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:26,310 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:26,311 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:26,311 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:26,322 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:26,827 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:26,828 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:26,828 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:26,828 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:26,838 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:26,857 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:27,450 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:27,451 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:27,451 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:27,460 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:27,860 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:28,052 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:28,052 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:28,052 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:28,063 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:28,642 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:28,642 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:28,642 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:28,654 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:28,864 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:29,184 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:08:29,202 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:08:29,203 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:08:29,216 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:29,365 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:29,365 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:29,371 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:29,721 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:29,722 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:29,722 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:29,731 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:29,865 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:30,324 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:30,325 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:30,325 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:30,344 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:30,876 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:30,877 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:30,877 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:30,877 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:30,886 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:31,417 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:31,418 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:31,418 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:31,429 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:31,867 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:32,064 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:32,065 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:32,065 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:32,065 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:32,086 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:32,633 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:32,634 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:32,634 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:32,651 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:32,867 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:33,265 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:33,266 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:33,266 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:33,278 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:33,819 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:33,819 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:33,820 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:33,829 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:33,868 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:34,409 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:34,410 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:34,410 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:34,422 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:34,880 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:34,961 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:34,962 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:34,962 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:34,981 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:35,563 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:35,564 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:35,564 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:35,581 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:35,881 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:36,103 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:36,104 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:36,104 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:36,116 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:36,629 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:36,630 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:36,630 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:36,649 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:36,883 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:37,137 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:37,137 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:37,137 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:37,138 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:37,149 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:37,685 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:37,686 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:37,686 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:37,704 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:37,887 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:38,192 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:38,193 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:38,193 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:38,204 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:38,715 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:38,716 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:38,716 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:38,727 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:38,887 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:39,234 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:39,234 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:39,234 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:39,246 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:39,808 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:39,809 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:39,809 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:39,821 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:39,888 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:40,360 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:40,361 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:40,361 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:40,376 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:40,901 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:40,901 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:40,901 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:40,902 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:40,913 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:41,466 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:41,467 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:41,467 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:41,486 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:41,901 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:41,955 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:41,956 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:41,956 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:41,968 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:42,427 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:42,427 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:42,428 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:42,428 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:42,440 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:42,915 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:42,935 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:42,936 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:42,936 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:42,946 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:43,461 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:43,462 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:43,462 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:43,477 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:43,927 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:43,966 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:43,967 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:43,967 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:43,978 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:44,203 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:08:44,203 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:08:44,441 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:44,442 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:44,442 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:44,461 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:44,956 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:44,986 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:44,986 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:44,987 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:45,005 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:45,558 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:45,559 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:45,559 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:45,570 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:45,957 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:46,077 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:46,078 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:46,078 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:46,089 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:46,707 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:46,708 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:46,708 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:46,726 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:46,957 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:47,191 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:47,191 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:47,191 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:47,202 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:47,694 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:47,695 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:47,695 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:47,695 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:47,706 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:47,958 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:48,280 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:48,281 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:48,281 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:48,292 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:48,802 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:48,802 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:48,802 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:48,814 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:48,958 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:49,381 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:49,382 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:49,382 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:49,393 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:49,891 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:49,892 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:49,892 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:49,903 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:49,959 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:50,584 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:50,585 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:50,585 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:50,603 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:50,959 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:51,197 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:51,198 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:51,198 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:51,217 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:51,724 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:51,724 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:51,724 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:51,737 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:51,963 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:52,270 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:52,271 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:52,271 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:52,282 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:52,827 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:52,827 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:52,828 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:52,838 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:52,846 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:52,963 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:53,313 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:53,314 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:53,314 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:53,333 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:53,814 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:53,815 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:53,815 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:53,828 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:53,964 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:54,441 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:54,442 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:54,442 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:54,460 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:54,963 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:54,964 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:54,964 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:54,972 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:54,975 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:55,571 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:55,572 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:55,572 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:55,590 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:55,974 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:56,153 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:56,153 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:56,153 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:56,162 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:56,840 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:56,841 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:56,841 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:56,852 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:56,975 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:57,482 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:57,483 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:57,483 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:57,501 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:57,947 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:57,958 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:57,958 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:57,958 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:08:57,969 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:57,976 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:58,552 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:58,553 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:58,553 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:58,564 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:58,989 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:08:59,059 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:59,060 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:59,060 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:59,078 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:59,187 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:08:59,203 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:08:59,203 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:08:59,680 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:08:59,680 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:08:59,680 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:08:59,692 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:08:59,990 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:00,167 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:00,168 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:00,168 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:00,190 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:00,748 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:00,748 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:00,748 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:00,761 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:00,992 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:01,379 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:01,380 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:01,380 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:01,392 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:01,865 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:01,865 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:01,866 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:01,877 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:01,996 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:02,359 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:02,359 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:02,360 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:02,371 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:02,997 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:02,998 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:02,998 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:02,998 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:03,006 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:03,009 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:03,539 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:03,540 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:03,540 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:03,551 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:04,006 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:04,160 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:04,161 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:04,161 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:04,173 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:04,785 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:04,785 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:04,785 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:04,796 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:05,008 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:05,267 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:05,267 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:05,268 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:05,286 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:05,782 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:05,783 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:05,783 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:05,795 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:06,009 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:06,321 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:06,322 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:06,322 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:06,333 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:06,815 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:06,815 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:06,816 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:06,827 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:07,012 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:07,422 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:07,422 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:07,423 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:07,434 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:07,956 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:07,957 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:07,957 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:07,976 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:08,013 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:08,451 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:08,452 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:08,452 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:08,452 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:08,471 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:08,943 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:08,943 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:08,943 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:08,955 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:09,013 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:09,419 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:09,420 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:09,420 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:09,431 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:09,969 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:09,970 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:09,970 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:09,988 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:10,014 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:10,507 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:10,508 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:10,508 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:10,524 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:11,014 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:11,131 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:11,132 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:11,132 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:11,148 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:11,638 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:11,638 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:11,638 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:11,650 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:12,015 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:12,234 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:12,235 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:12,235 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:12,246 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:12,947 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:12,948 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:12,948 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:12,959 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:13,016 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:13,418 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:13,419 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:13,419 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:13,438 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:13,986 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:13,986 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:13,987 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:13,987 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:13,997 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:14,016 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:14,205 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:09:14,205 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:09:14,548 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:14,549 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:14,549 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:14,567 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:15,020 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:15,133 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:15,134 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:15,134 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:15,146 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:15,645 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:15,646 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:15,646 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:15,665 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:16,020 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:16,139 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:16,140 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:16,140 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:16,152 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:16,669 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:16,670 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:16,670 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:16,690 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:17,021 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:17,303 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:17,304 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:17,304 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:17,315 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:17,867 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:17,868 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:17,868 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:17,878 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:18,025 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:18,338 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:18,339 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:18,339 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:18,348 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:18,864 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:18,865 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:18,865 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:18,876 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:19,026 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:19,336 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:19,337 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:19,337 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:19,337 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:19,348 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:19,961 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:19,961 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:19,961 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:19,971 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:20,026 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:20,379 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:20,380 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:20,380 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:20,399 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:20,956 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:20,956 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:20,956 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:20,970 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:21,027 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:21,581 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:21,581 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:21,581 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:21,593 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:22,040 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:22,108 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:22,108 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:22,109 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:22,128 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:22,732 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:22,733 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:22,733 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:22,752 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:23,042 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:23,335 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:23,335 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:23,335 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:23,348 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:23,983 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:23,984 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:23,984 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:23,997 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:24,042 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:24,571 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:24,572 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:24,572 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:24,572 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:24,590 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:25,054 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:25,120 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:25,120 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:25,120 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:25,132 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:25,663 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:25,663 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:25,663 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:25,676 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:26,055 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:26,358 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:26,359 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:26,359 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:26,371 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:26,917 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:26,917 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:26,917 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:26,930 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:27,055 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:27,372 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:27,372 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:27,373 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:27,391 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:27,921 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:27,921 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:27,921 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:27,935 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:28,056 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:28,520 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:28,521 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:28,521 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:28,534 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:29,040 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:29,041 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:29,041 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:29,053 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:29,056 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:29,188 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:09:29,205 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:09:29,205 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:09:29,581 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:29,581 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:29,581 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:29,581 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:29,601 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:30,057 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:30,203 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:30,204 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:30,204 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:30,228 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:30,725 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:30,726 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:30,726 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:30,737 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:31,058 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:31,319 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:31,319 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:31,319 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:31,331 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:31,945 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:31,945 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:31,945 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:31,957 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:32,058 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:32,571 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:32,572 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:32,572 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:32,588 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:33,102 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:33,130 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:33,130 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:33,130 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:33,143 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:33,624 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:33,632 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:33,632 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:33,638 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:34,115 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:34,195 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:34,195 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:34,195 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:34,208 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:34,735 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:34,736 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:34,736 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:34,736 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:34,747 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:35,116 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:35,341 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:35,342 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:35,342 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:35,352 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:35,957 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:35,958 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:35,958 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:35,977 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:36,116 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:36,786 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:36,787 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:36,787 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:36,806 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:37,117 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:37,415 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:37,415 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:37,415 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:37,428 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:37,956 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:37,957 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:37,957 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:37,967 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:38,118 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:38,522 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:38,523 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:38,523 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:38,549 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:39,131 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:39,187 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:39,188 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:39,188 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:39,200 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:39,727 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:39,728 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:39,728 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:39,741 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:39,741 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:40,135 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:40,263 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:40,264 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:40,264 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:40,275 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:40,862 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:40,863 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:40,863 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:40,874 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:41,137 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:41,375 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:41,375 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:41,375 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:41,386 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:42,012 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:42,013 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:42,013 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:42,031 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:42,139 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:42,527 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:42,528 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:42,528 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:42,539 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:43,106 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:43,107 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:43,107 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:43,126 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:43,139 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:43,692 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:43,693 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:43,693 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:43,704 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:44,146 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:44,214 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:09:44,215 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:09:44,223 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:44,383 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:44,383 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:44,387 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:44,718 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:44,719 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:44,719 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:44,730 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:45,167 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:45,167 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:45,167 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:45,168 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:45,168 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:45,186 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:45,729 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:45,730 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:45,730 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:45,741 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:46,179 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:46,237 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:46,238 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:46,238 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:46,249 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:46,770 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:46,771 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:46,771 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:46,790 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:47,179 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:47,333 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:47,333 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:47,334 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:47,344 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:47,847 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:47,847 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:47,847 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:47,858 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:48,179 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:48,349 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:48,350 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:48,350 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:48,361 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:48,912 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:48,912 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:48,912 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:48,924 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:49,180 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:49,536 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:49,537 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:49,537 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:49,555 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:50,116 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:50,117 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:50,117 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:50,129 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:50,181 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:50,596 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:50,597 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:50,597 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:50,597 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:50,607 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:51,099 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:51,100 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:51,100 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:51,111 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:51,181 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:51,602 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:51,603 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:51,603 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:51,616 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:52,135 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:52,136 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:52,136 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:52,154 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:52,181 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:52,731 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:52,731 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:52,732 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:52,742 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:53,193 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:53,237 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:53,237 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:53,237 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:53,248 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:53,818 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:53,818 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:53,818 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:53,831 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:54,197 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:54,372 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:54,373 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:54,373 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:54,387 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:54,826 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:54,827 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:54,827 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:54,838 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:55,197 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:55,336 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:55,336 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:55,337 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:55,348 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:55,818 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:55,819 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:55,819 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:55,819 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:09:55,831 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:56,198 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:56,445 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:56,446 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:56,446 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:56,457 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:57,055 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:57,055 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:57,055 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:57,067 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:57,202 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:57,568 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:57,569 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:57,569 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:57,587 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:58,083 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:58,084 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:58,084 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:58,095 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:58,205 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:58,584 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:58,584 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:58,584 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:58,596 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:59,087 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:59,088 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:59,088 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:59,107 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:09:59,189 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:09:59,206 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:09:59,214 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:09:59,215 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:09:59,657 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:09:59,657 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:09:59,658 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:09:59,669 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:00,165 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:00,166 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:00,166 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:00,178 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:00,206 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:00,691 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:00,692 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:00,692 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:00,703 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:01,214 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:01,215 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:01,215 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:01,215 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:01,215 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:01,234 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:01,724 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:01,725 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:01,725 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:01,748 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:02,226 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:02,273 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:02,274 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:02,274 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:02,294 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:02,907 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:02,908 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:02,908 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:02,918 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:03,230 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:03,451 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:03,451 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:03,452 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:03,462 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:03,986 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:03,987 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:03,987 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:04,006 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:04,231 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:04,551 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:04,551 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:04,551 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:04,562 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:05,018 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:05,018 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:05,018 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:05,029 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:05,232 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:05,564 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:05,564 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:05,565 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:05,576 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:06,136 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:06,136 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:06,137 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:06,148 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:06,233 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:06,654 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:06,655 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:06,655 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:06,655 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:06,666 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:07,244 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:07,274 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:07,274 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:07,274 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:07,288 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:07,970 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:07,971 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:07,971 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:07,989 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:08,246 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:08,465 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:08,466 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:08,466 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:08,485 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:09,122 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:09,123 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:09,123 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:09,134 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:09,246 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:09,708 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:09,709 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:09,709 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:09,720 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:10,246 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:10,247 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:10,247 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:10,258 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:10,266 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:10,935 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:10,936 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:10,936 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:10,947 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:11,258 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:11,490 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:11,490 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:11,491 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:11,503 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:11,986 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:11,987 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:11,987 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:11,987 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:12,006 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:12,260 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:12,553 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:12,561 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:12,561 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:12,565 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:13,019 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:13,020 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:13,020 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:13,031 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:13,261 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:13,544 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:13,545 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:13,545 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:13,556 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:14,039 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:14,040 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:14,040 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:14,058 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:14,214 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:10:14,215 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:10:14,264 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:14,638 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:14,638 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:14,638 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:14,650 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:15,210 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:15,211 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:15,211 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:15,230 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:15,265 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:15,764 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:15,765 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:15,765 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:15,776 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:16,281 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:16,339 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:16,340 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:16,340 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:16,350 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:16,829 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:16,829 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:16,830 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:16,840 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:17,297 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:17,330 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:17,331 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:17,331 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:17,331 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:17,350 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:17,854 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:17,855 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:17,855 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:17,868 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:18,298 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:18,481 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:18,482 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:18,482 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:18,493 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:19,001 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:19,001 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:19,002 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:19,013 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:19,301 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:19,549 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:19,549 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:19,549 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:19,560 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:20,050 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:20,051 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:20,051 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:20,062 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:20,303 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:20,556 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:20,557 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:20,557 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:20,575 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:21,030 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:21,031 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:21,031 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:21,040 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:21,304 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:21,626 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:21,626 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:21,626 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:21,638 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:22,280 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:22,280 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:22,280 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:22,292 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:22,304 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:22,832 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:22,833 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:22,833 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:22,833 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:22,844 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:23,307 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:23,377 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:23,377 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:23,377 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:23,388 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:23,955 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:23,956 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:23,956 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:23,967 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:24,308 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:24,536 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:24,536 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:24,536 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:24,547 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:25,000 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:25,001 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:25,001 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:25,013 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:25,310 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:25,551 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:25,552 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:25,552 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:25,571 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:26,109 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:26,110 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:26,110 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:26,121 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:26,312 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:26,712 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:26,712 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:26,712 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:26,723 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:27,227 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:27,228 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:27,228 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:27,239 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:27,312 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:27,784 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:27,784 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:27,784 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:27,795 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:28,326 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:28,326 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:28,327 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:28,327 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:28,327 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:28,338 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:28,923 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:28,923 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:28,923 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:28,935 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:29,194 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:10:29,215 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:10:29,215 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:10:29,317 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:29,451 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:29,451 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:29,452 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:29,471 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:29,971 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:29,972 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:29,972 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:29,990 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:30,321 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:30,443 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:30,444 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:30,444 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:30,462 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:30,998 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:30,998 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:30,998 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:31,007 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:31,321 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:31,545 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:31,546 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:31,546 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:31,565 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:32,203 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:32,204 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:32,204 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:32,223 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:32,324 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:32,790 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:32,791 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:32,791 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:32,802 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:33,302 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:33,302 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:33,302 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:33,324 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:33,325 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:33,902 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:33,903 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:33,903 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:33,903 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:33,914 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:34,331 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:34,384 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:34,385 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:34,385 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:34,397 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:34,910 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:34,911 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:34,911 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:34,922 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:35,332 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:35,504 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:35,504 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:35,504 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:35,517 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:36,009 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:36,009 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:36,009 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:36,020 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:36,332 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:36,587 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:36,587 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:36,587 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:36,598 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:37,114 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:37,115 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:37,115 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:37,134 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:37,334 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:37,595 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:37,595 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:37,596 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:37,606 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:38,110 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:38,111 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:38,111 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:38,122 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:38,335 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:38,739 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:38,739 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:38,739 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:38,750 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:39,353 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:39,388 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:39,389 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:39,389 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:39,389 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:39,408 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:39,982 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:39,982 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:39,983 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:39,992 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:40,354 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:40,628 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:40,629 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:40,629 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:40,641 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:41,172 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:41,173 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:41,173 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:41,192 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:41,356 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:41,626 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:41,627 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:41,627 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:41,638 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:42,220 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:42,220 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:42,220 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:42,231 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:42,356 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:42,781 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:42,782 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:42,782 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:42,801 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:43,275 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:43,276 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:43,276 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:43,286 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:43,358 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:43,829 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:43,830 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:43,830 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:43,850 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:44,216 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:10:44,216 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:10:44,373 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:44,393 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:44,394 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:44,394 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:44,394 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:44,405 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:44,957 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:44,957 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:44,957 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:44,970 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:45,398 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:45,456 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:45,456 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:45,456 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:45,468 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:46,020 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:46,021 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:46,021 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:46,040 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:46,398 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:46,581 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:46,582 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:46,582 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:46,601 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:47,124 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:47,124 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:47,124 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:47,135 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:47,401 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:47,805 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:47,806 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:47,806 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:47,825 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:48,413 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:48,426 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:48,426 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:48,427 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:48,438 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:48,958 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:48,959 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:48,959 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:48,978 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:49,434 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:49,468 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:49,469 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:49,469 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:49,469 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:49,488 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:49,925 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:49,926 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:49,926 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:49,935 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:50,446 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:50,463 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:50,463 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:50,463 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:50,475 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:50,996 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:50,997 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:50,997 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:51,015 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:51,465 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:51,548 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:51,549 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:51,549 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:51,569 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:52,219 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:52,219 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:52,220 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:52,231 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:52,466 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:52,759 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:52,760 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:52,760 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:52,771 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:53,316 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:53,317 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:53,317 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:53,328 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:53,467 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:53,966 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:53,966 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:53,966 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:53,978 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:54,469 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:54,555 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:54,556 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:54,556 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:54,556 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:10:54,567 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:55,094 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:55,095 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:55,095 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:55,114 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:55,470 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:55,694 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:55,695 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:55,695 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:55,714 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:56,253 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:56,253 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:56,254 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:56,264 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:56,474 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:56,764 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:56,765 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:56,765 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:56,783 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:57,363 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:57,364 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:57,364 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:57,373 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:57,475 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:57,884 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:57,885 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:57,885 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:57,896 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:58,420 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:58,420 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:58,420 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:58,432 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:58,475 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:58,918 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:58,919 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:58,919 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:58,930 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:10:59,195 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:10:59,216 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:10:59,217 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:10:59,476 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:10:59,476 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:10:59,477 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:10:59,484 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:10:59,488 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:00,002 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:00,003 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:00,003 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:00,003 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:00,026 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:00,498 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:00,558 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:00,559 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:00,559 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:00,570 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:01,163 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:01,163 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:01,164 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:01,182 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:01,499 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:01,705 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:01,706 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:01,706 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:01,717 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:02,156 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:02,156 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:02,156 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:02,165 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:02,499 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:02,671 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:02,672 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:02,672 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:02,684 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:03,182 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:03,182 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:03,182 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:03,194 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:03,500 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:03,756 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:03,757 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:03,757 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:03,768 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:04,364 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:04,364 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:04,364 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:04,376 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:04,500 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:04,986 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:04,987 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:04,987 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:04,999 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:05,451 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:05,452 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:05,452 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:05,452 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:05,471 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:05,501 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:06,068 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:06,069 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:06,069 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:06,089 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:06,501 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:06,682 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:06,683 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:06,683 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:06,699 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:07,290 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:07,291 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:07,291 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:07,309 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:07,502 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:07,785 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:07,786 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:07,786 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:07,805 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:08,416 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:08,417 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:08,417 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:08,428 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:08,503 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:08,957 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:08,958 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:08,958 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:08,969 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:09,515 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:09,528 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:09,529 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:09,529 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:09,548 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:10,104 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:10,105 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:10,105 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:10,123 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:10,516 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:10,670 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:10,670 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:10,671 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:10,671 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:10,682 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:11,239 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:11,239 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:11,240 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:11,251 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:11,516 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:11,782 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:11,783 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:11,783 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:11,794 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:12,276 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:12,276 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:12,276 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:12,288 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:12,517 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:12,811 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:12,812 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:12,812 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:12,829 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:13,337 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:13,338 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:13,338 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:13,349 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:13,517 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:13,867 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:13,868 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:13,868 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:13,887 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:14,216 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:11:14,217 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:11:14,330 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:14,370 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:14,370 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:14,374 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:14,518 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:14,882 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:14,883 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:14,883 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:14,904 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:15,494 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:15,495 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:15,495 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:15,513 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:15,518 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:16,027 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:16,028 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:16,028 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:16,028 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:16,040 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:16,519 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:16,668 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:16,668 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:16,668 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:16,680 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:17,179 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:17,179 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:17,179 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:17,193 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:17,520 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:17,814 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:17,815 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:17,815 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:17,826 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:18,332 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:18,333 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:18,333 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:18,351 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:18,521 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:18,824 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:18,825 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:18,825 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:18,836 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:19,285 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:19,286 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:19,286 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:19,297 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:19,524 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:19,787 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:19,787 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:19,788 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:19,799 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:20,371 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:20,372 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:20,372 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:20,391 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:20,525 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:20,921 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:20,921 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:20,921 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:20,930 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:21,385 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:21,385 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:21,386 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:21,386 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:21,397 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:21,525 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:21,903 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:21,904 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:21,904 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:21,915 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:22,445 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:22,446 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:22,446 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:22,465 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:22,526 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:23,035 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:23,035 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:23,035 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:23,049 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:23,532 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:23,532 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:23,532 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:23,533 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:23,551 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:24,043 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:24,044 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:24,044 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:24,059 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:24,544 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:24,565 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:24,565 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:24,566 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:24,578 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:25,083 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:25,083 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:25,084 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:25,101 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:25,559 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:25,622 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:25,623 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:25,623 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:25,634 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:26,147 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:26,147 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:26,147 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:26,158 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:26,567 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:26,644 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:26,645 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:26,645 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:26,645 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:26,664 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:27,201 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:27,202 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:27,202 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:27,213 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:27,571 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:27,769 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:27,769 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:27,770 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:27,781 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:28,258 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:28,259 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:28,259 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:28,279 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:28,572 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:28,780 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:28,781 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:28,781 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:28,792 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:29,202 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:11:29,226 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:11:29,227 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:11:29,317 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:29,378 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:29,378 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:29,383 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:29,572 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:29,919 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:29,919 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:29,920 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:29,930 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:30,432 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:30,432 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:30,432 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:30,443 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:30,573 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:31,055 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:31,056 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:31,056 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:31,067 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:31,589 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:31,589 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:31,590 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:31,590 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:31,601 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:32,099 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:32,100 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:32,100 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:32,100 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:32,111 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:32,580 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:32,720 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:32,720 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:32,720 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:32,731 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:33,191 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:33,192 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:33,192 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:33,203 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:33,628 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:33,654 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:33,654 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:33,655 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:33,666 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:34,145 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:34,145 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:34,146 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:34,157 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:34,613 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:34,614 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:34,614 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:34,625 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:34,629 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:35,086 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:35,086 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:35,086 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:35,098 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:35,649 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:35,715 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:35,715 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:35,715 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:35,727 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:36,351 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:36,351 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:36,351 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:36,363 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:36,653 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:36,853 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:36,853 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:36,853 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:36,864 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:37,395 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:37,396 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:37,396 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:37,396 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:37,408 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:37,654 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:37,950 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:37,950 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:37,951 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:37,961 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:38,469 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:38,470 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:38,470 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:38,481 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:38,654 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:38,986 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:38,987 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:38,987 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:39,000 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:39,487 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:39,488 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:39,488 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:39,500 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:39,655 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:40,102 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:40,103 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:40,103 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:40,115 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:40,615 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:40,616 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:40,616 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:40,635 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:40,655 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:41,203 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:41,204 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:41,204 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:41,214 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:41,659 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:41,774 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:41,775 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:41,775 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:41,786 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:42,272 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:42,273 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:42,273 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:42,284 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:42,660 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:42,790 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:42,791 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:42,791 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:42,791 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:42,810 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:43,357 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:43,358 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:43,358 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:43,376 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:43,661 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:43,837 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:43,837 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:43,837 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:43,849 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:44,226 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:11:44,227 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:11:44,384 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:44,384 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:44,384 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:44,395 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:44,661 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:44,967 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:44,968 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:44,968 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:44,979 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:45,574 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:45,575 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:45,575 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:45,586 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:45,662 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:46,133 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:46,134 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:46,134 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:46,153 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:46,656 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:46,657 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:46,657 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:46,675 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:46,676 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:47,170 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:47,171 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:47,171 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:47,182 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:47,641 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:47,642 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:47,642 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:47,653 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:47,675 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:48,234 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:48,235 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:48,235 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:48,235 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:48,246 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:48,689 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:48,777 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:48,778 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:48,778 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:48,789 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:49,357 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:49,358 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:49,358 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:49,369 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:49,690 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:49,958 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:49,959 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:49,959 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:49,979 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:50,593 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:50,593 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:50,593 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:50,605 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:50,690 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:51,122 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:51,123 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:51,123 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:51,134 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:51,640 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:51,641 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:51,641 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:51,659 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:51,691 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:52,104 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:52,105 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:52,105 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:52,123 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:52,658 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:52,659 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:52,659 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:52,671 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:52,691 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:53,136 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:53,137 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:53,137 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:53,148 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:53,688 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:53,688 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:53,688 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:53,688 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:53,697 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:53,700 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:54,186 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:54,187 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:54,187 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:54,205 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:54,710 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:54,710 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:54,711 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:54,711 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:54,722 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:55,420 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:55,421 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:55,421 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:55,432 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:55,700 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:56,047 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:56,048 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:56,048 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:56,059 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:56,542 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:56,543 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:56,543 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:56,554 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:56,702 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:57,090 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:57,090 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:57,090 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:57,101 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:57,549 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:57,549 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:57,549 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:57,561 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:57,702 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:58,053 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:58,054 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:58,054 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:58,066 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:58,566 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:58,567 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:58,567 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:58,585 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:58,703 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:11:59,071 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:59,072 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:59,072 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:59,072 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:11:59,083 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:59,199 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:11:59,227 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:11:59,227 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:11:59,624 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:11:59,625 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:11:59,625 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:11:59,637 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:11:59,704 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:00,108 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:00,109 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:00,109 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:00,119 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:00,667 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:00,668 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:00,668 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:00,678 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:00,704 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:01,266 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:01,266 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:01,266 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:01,277 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:01,724 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:01,813 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:01,814 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:01,814 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:01,825 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:02,342 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:02,343 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:02,343 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:02,354 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:02,725 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:02,905 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:02,905 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:02,905 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:02,916 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:03,425 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:03,426 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:03,426 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:03,445 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:03,725 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:03,978 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:03,979 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:03,979 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:03,990 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:04,571 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:04,572 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:04,572 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:04,572 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:04,583 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:04,726 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:05,086 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:05,086 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:05,086 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:05,098 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:05,637 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:05,638 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:05,638 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:05,647 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:05,726 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:06,267 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:06,268 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:06,268 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:06,284 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:06,738 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:06,799 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:06,800 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:06,800 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:06,811 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:07,265 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:07,266 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:07,266 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:07,284 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:07,745 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:07,798 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:07,799 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:07,799 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:07,810 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:08,315 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:08,315 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:08,316 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:08,327 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:08,746 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:08,859 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:08,860 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:08,860 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:08,871 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:09,422 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:09,423 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:09,423 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:09,435 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:09,780 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:09,957 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:09,958 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:09,958 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:09,958 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:09,976 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:10,556 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:10,557 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:10,557 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:10,575 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:10,781 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:11,080 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:11,080 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:11,080 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:11,091 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:11,618 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:11,619 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:11,620 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:11,630 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:11,781 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:12,116 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:12,117 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:12,117 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:12,128 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:12,726 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:12,726 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:12,726 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:12,738 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:12,782 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:13,281 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:13,282 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:13,282 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:13,300 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:13,797 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:13,838 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:13,839 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:13,839 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:13,850 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:14,230 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:12:14,230 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:12:14,379 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:14,380 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:14,380 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:14,397 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:14,817 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:14,884 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:14,885 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:14,885 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:14,896 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:15,393 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:15,394 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:15,394 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:15,394 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:15,413 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:15,818 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:15,928 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:15,929 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:15,929 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:15,948 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:16,533 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:16,533 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:16,533 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:16,545 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:16,820 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:17,022 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:17,023 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:17,023 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:17,034 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:17,553 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:17,553 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:17,553 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:17,564 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:17,821 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:18,052 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:18,053 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:18,053 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:18,064 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:18,555 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:18,556 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:18,556 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:18,574 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:18,822 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:19,041 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:19,042 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:19,042 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:19,053 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:19,510 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:19,511 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:19,511 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:19,522 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:19,823 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:20,037 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:20,038 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:20,038 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:20,049 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:20,539 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:20,539 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:20,539 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:20,539 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:20,550 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:20,823 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:21,027 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:21,027 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:21,027 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:21,038 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:21,542 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:21,543 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:21,543 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:21,556 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:21,824 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:22,049 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:22,050 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:22,050 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:22,061 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:22,663 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:22,664 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:22,664 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:22,689 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:22,827 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:23,175 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:23,176 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:23,176 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:23,187 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:23,707 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:23,707 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:23,707 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:23,718 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:23,829 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:24,192 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:24,193 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:24,193 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:24,203 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:24,796 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:24,797 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:24,797 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:24,808 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:24,830 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:25,355 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:25,356 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:25,356 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:25,367 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:25,844 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:25,906 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:25,907 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:25,907 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:25,907 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:25,925 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:26,518 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:26,519 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:26,519 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:26,530 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:26,844 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:27,172 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:27,172 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:27,172 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:27,183 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:27,613 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:27,614 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:27,614 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:27,625 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:27,845 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:28,161 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:28,162 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:28,162 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:28,181 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:28,789 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:28,789 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:28,789 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:28,804 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:28,845 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:29,200 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:12:29,233 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:12:29,234 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:12:29,334 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:29,405 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:29,405 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:29,415 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:29,860 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:29,916 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:29,916 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:29,916 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:29,928 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:30,440 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:30,441 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:30,441 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:30,452 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:30,863 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:31,010 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:31,010 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:31,011 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:31,011 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:31,022 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:31,714 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:31,715 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:31,715 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:31,727 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:31,864 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:32,315 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:32,315 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:32,315 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:32,327 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:32,864 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:32,980 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:32,981 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:32,981 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:32,990 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:33,584 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:33,585 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:33,585 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:33,603 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:33,867 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:34,168 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:34,168 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:34,168 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:34,180 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:34,742 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:34,743 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:34,743 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:34,756 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:34,870 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:35,411 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:35,412 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:35,412 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:35,424 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:35,882 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:35,925 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:35,926 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:35,926 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:35,945 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:36,496 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:36,497 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:36,497 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:36,497 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:36,517 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:36,883 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:37,095 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:37,096 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:37,096 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:37,116 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:37,816 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:37,817 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:37,817 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:37,836 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:37,883 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:38,457 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:38,458 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:38,458 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:38,477 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:38,884 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:39,203 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:39,204 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:39,204 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:39,216 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:39,845 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:39,846 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:39,846 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:39,858 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:39,884 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:40,568 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:40,569 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:40,569 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:40,587 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:40,885 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:41,211 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:41,212 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:41,212 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:41,224 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:41,835 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:41,836 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:41,836 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:41,836 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:41,848 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:41,885 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:42,362 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:42,362 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:42,362 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:42,375 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:42,886 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:43,013 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:43,013 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:43,013 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:43,026 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:43,587 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:43,588 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:43,588 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:43,607 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:43,887 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:44,123 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:44,124 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:44,124 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:44,136 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:44,234 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: stop_status +2023-07-09 16:12:44,234 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: stop_status +2023-07-09 16:12:44,694 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:44,695 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:44,695 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:44,706 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:44,889 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:45,189 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:45,190 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:45,190 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:45,202 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:45,754 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:45,754 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:45,755 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:45,767 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:45,889 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:46,289 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:46,298 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:46,298 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:46,302 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:46,892 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:46,892 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:46,892 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:46,893 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:46,901 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:46,905 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:47,396 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:47,397 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:47,397 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:47,420 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:47,451 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: partial_history +2023-07-09 16:12:47,451 DEBUG SenderThread:245701 [sender.py:send():375] send: history +2023-07-09 16:12:47,452 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: summary_record +2023-07-09 16:12:47,456 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:47,901 INFO Thread-12 :245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:48,045 DEBUG SenderThread:245701 [sender.py:send():375] send: telemetry +2023-07-09 16:12:48,046 DEBUG SenderThread:245701 [sender.py:send():375] send: exit +2023-07-09 16:12:48,047 INFO SenderThread:245701 [sender.py:send_exit():598] handling exit code: 1 +2023-07-09 16:12:48,047 INFO SenderThread:245701 [sender.py:send_exit():600] handling runtime: 4056 +2023-07-09 16:12:48,055 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:48,055 INFO SenderThread:245701 [sender.py:send_exit():606] send defer +2023-07-09 16:12:48,055 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,056 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 0 +2023-07-09 16:12:48,056 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,056 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 0 +2023-07-09 16:12:48,056 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 1 +2023-07-09 16:12:48,056 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,056 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 1 +2023-07-09 16:12:48,056 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,056 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 1 +2023-07-09 16:12:48,056 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 2 +2023-07-09 16:12:48,056 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,056 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 2 +2023-07-09 16:12:48,056 INFO HandlerThread:245701 [system_monitor.py:finish():190] Stopping system monitor +2023-07-09 16:12:48,056 DEBUG SystemMonitor:245701 [system_monitor.py:_start():166] Finished system metrics aggregation loop +2023-07-09 16:12:48,056 DEBUG SystemMonitor:245701 [system_monitor.py:_start():170] Publishing last batch of metrics +2023-07-09 16:12:48,068 INFO HandlerThread:245701 [interfaces.py:finish():202] Joined cpu monitor +2023-07-09 16:12:48,068 INFO HandlerThread:245701 [interfaces.py:finish():202] Joined disk monitor +2023-07-09 16:12:48,151 INFO HandlerThread:245701 [interfaces.py:finish():202] Joined gpu monitor +2023-07-09 16:12:48,152 INFO HandlerThread:245701 [interfaces.py:finish():202] Joined memory monitor +2023-07-09 16:12:48,152 INFO HandlerThread:245701 [interfaces.py:finish():202] Joined network monitor +2023-07-09 16:12:48,152 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,152 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 2 +2023-07-09 16:12:48,152 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 3 +2023-07-09 16:12:48,152 DEBUG SenderThread:245701 [sender.py:send():375] send: stats +2023-07-09 16:12:48,153 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,153 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 3 +2023-07-09 16:12:48,153 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,153 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 3 +2023-07-09 16:12:48,153 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 4 +2023-07-09 16:12:48,153 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,153 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 4 +2023-07-09 16:12:48,153 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,153 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 4 +2023-07-09 16:12:48,153 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 5 +2023-07-09 16:12:48,153 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,153 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 5 +2023-07-09 16:12:48,153 DEBUG SenderThread:245701 [sender.py:send():375] send: summary +2023-07-09 16:12:48,158 INFO SenderThread:245701 [sender.py:_save_file():1378] saving file wandb-summary.json with policy end +2023-07-09 16:12:48,158 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,158 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 5 +2023-07-09 16:12:48,158 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 6 +2023-07-09 16:12:48,159 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,159 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 6 +2023-07-09 16:12:48,159 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,159 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 6 +2023-07-09 16:12:48,164 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: status_report +2023-07-09 16:12:48,336 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 7 +2023-07-09 16:12:48,336 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,336 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 7 +2023-07-09 16:12:48,336 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,336 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 7 +2023-07-09 16:12:48,336 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 8 +2023-07-09 16:12:48,336 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,336 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 8 +2023-07-09 16:12:48,337 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,337 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 8 +2023-07-09 16:12:48,337 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 9 +2023-07-09 16:12:48,337 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,337 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 9 +2023-07-09 16:12:48,337 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,337 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 9 +2023-07-09 16:12:48,337 INFO SenderThread:245701 [dir_watcher.py:finish():365] shutting down directory watcher +2023-07-09 16:12:48,902 INFO SenderThread:245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/config.yaml +2023-07-09 16:12:48,902 INFO SenderThread:245701 [dir_watcher.py:_on_file_modified():295] file/dir modified: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:48,902 INFO SenderThread:245701 [dir_watcher.py:finish():395] scan: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files +2023-07-09 16:12:48,903 INFO SenderThread:245701 [dir_watcher.py:finish():409] scan save: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/config.yaml config.yaml +2023-07-09 16:12:48,903 INFO SenderThread:245701 [dir_watcher.py:finish():409] scan save: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json wandb-summary.json +2023-07-09 16:12:48,903 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 10 +2023-07-09 16:12:48,903 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:48,903 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 10 +2023-07-09 16:12:48,904 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:48,904 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 10 +2023-07-09 16:12:48,904 INFO SenderThread:245701 [file_pusher.py:finish():167] shutting down file pusher +2023-07-09 16:12:49,048 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: poll_exit +2023-07-09 16:12:49,048 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: poll_exit +2023-07-09 16:12:49,372 INFO wandb-upload_0:245701 [upload_job.py:push():137] Uploaded file /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/config.yaml +2023-07-09 16:12:49,422 INFO wandb-upload_1:245701 [upload_job.py:push():137] Uploaded file /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/files/wandb-summary.json +2023-07-09 16:12:49,622 INFO Thread-11 (_thread_body):245701 [sender.py:transition_state():626] send defer: 11 +2023-07-09 16:12:49,622 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:49,622 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 11 +2023-07-09 16:12:49,622 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:49,622 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 11 +2023-07-09 16:12:49,622 INFO SenderThread:245701 [file_pusher.py:join():172] waiting for file pusher +2023-07-09 16:12:49,622 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 12 +2023-07-09 16:12:49,623 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:49,623 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 12 +2023-07-09 16:12:49,623 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:49,623 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 12 +2023-07-09 16:12:50,048 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: poll_exit +2023-07-09 16:12:50,104 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 13 +2023-07-09 16:12:50,104 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: poll_exit +2023-07-09 16:12:50,104 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:50,104 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 13 +2023-07-09 16:12:50,105 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:50,105 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 13 +2023-07-09 16:12:50,105 INFO SenderThread:245701 [sender.py:transition_state():626] send defer: 14 +2023-07-09 16:12:50,105 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: defer +2023-07-09 16:12:50,105 INFO HandlerThread:245701 [handler.py:handle_request_defer():170] handle defer: 14 +2023-07-09 16:12:50,105 DEBUG SenderThread:245701 [sender.py:send():375] send: final +2023-07-09 16:12:50,105 DEBUG SenderThread:245701 [sender.py:send():375] send: footer +2023-07-09 16:12:50,105 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: defer +2023-07-09 16:12:50,105 INFO SenderThread:245701 [sender.py:send_request_defer():622] handle sender defer: 14 +2023-07-09 16:12:50,106 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: poll_exit +2023-07-09 16:12:50,106 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: server_info +2023-07-09 16:12:50,106 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: get_summary +2023-07-09 16:12:50,106 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: sampled_history +2023-07-09 16:12:50,107 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: poll_exit +2023-07-09 16:12:50,108 DEBUG SenderThread:245701 [sender.py:send_request():402] send_request: server_info +2023-07-09 16:12:50,380 DEBUG HandlerThread:245701 [handler.py:handle_request():144] handle_request: shutdown +2023-07-09 16:12:50,380 INFO HandlerThread:245701 [handler.py:finish():842] shutting down handler +2023-07-09 16:12:51,108 INFO WriterThread:245701 [datastore.py:close():298] close: /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/run-humans.wandb +2023-07-09 16:12:51,380 INFO SenderThread:245701 [sender.py:finish():1550] shutting down sender +2023-07-09 16:12:51,380 INFO SenderThread:245701 [file_pusher.py:finish():167] shutting down file pusher +2023-07-09 16:12:51,380 INFO SenderThread:245701 [file_pusher.py:join():172] waiting for file pusher diff --git a/wandb/run-20230709_160458-humans/logs/debug.log b/wandb/run-20230709_160458-humans/logs/debug.log new file mode 100644 index 0000000..db142b0 --- /dev/null +++ b/wandb/run-20230709_160458-humans/logs/debug.log @@ -0,0 +1,39 @@ +2023-07-09 16:04:58,369 INFO MainThread:245660 [wandb_setup.py:_flush():76] Current SDK version is 0.15.3 +2023-07-09 16:04:58,369 INFO MainThread:245660 [wandb_setup.py:_flush():76] Configure stats pid to 245660 +2023-07-09 16:04:58,369 INFO MainThread:245660 [wandb_setup.py:_flush():76] Loading settings from /home/id929844/.config/wandb/settings +2023-07-09 16:04:58,369 INFO MainThread:245660 [wandb_setup.py:_flush():76] Loading settings from /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/settings +2023-07-09 16:04:58,369 INFO MainThread:245660 [wandb_setup.py:_flush():76] Loading settings from environment variables: {} +2023-07-09 16:04:58,369 INFO MainThread:245660 [wandb_setup.py:_flush():76] Applying setup settings: {'_disable_service': False} +2023-07-09 16:04:58,369 INFO MainThread:245660 [wandb_setup.py:_flush():76] Inferring run settings from compute environment: {'program_relpath': 'main.py', 'program': '/rwthfs/rz/cluster/home/id929844/diffusion_project/main.py'} +2023-07-09 16:04:58,369 INFO MainThread:245660 [wandb_init.py:_log_setup():507] Logging user logs to /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/logs/debug.log +2023-07-09 16:04:58,370 INFO MainThread:245660 [wandb_init.py:_log_setup():508] Logging internal logs to /rwthfs/rz/cluster/home/id929844/diffusion_project/wandb/run-20230709_160458-humans/logs/debug-internal.log +2023-07-09 16:04:58,370 INFO MainThread:245660 [wandb_init.py:init():547] calling init triggers +2023-07-09 16:04:58,370 INFO MainThread:245660 [wandb_init.py:init():554] wandb.init called with sweep_config: {} +config: {} +2023-07-09 16:04:58,370 INFO MainThread:245660 [wandb_init.py:init():596] starting backend +2023-07-09 16:04:58,370 INFO MainThread:245660 [wandb_init.py:init():600] setting up manager +2023-07-09 16:04:58,376 INFO MainThread:245660 [backend.py:_multiprocessing_setup():106] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-07-09 16:04:58,388 INFO MainThread:245660 [wandb_init.py:init():606] backend started and connected +2023-07-09 16:04:58,395 INFO MainThread:245660 [wandb_init.py:init():700] updated telemetry +2023-07-09 16:04:58,444 INFO MainThread:245660 [wandb_init.py:init():737] communicating run to backend with 60.0 second timeout +2023-07-09 16:04:58,998 INFO MainThread:245660 [wandb_init.py:init():780] run resumed +2023-07-09 16:04:59,029 INFO MainThread:245660 [wandb_run.py:_on_init():2177] communicating current version +2023-07-09 16:04:59,155 INFO MainThread:245660 [wandb_run.py:_on_init():2186] got version response upgrade_message: "wandb version 0.15.5 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-07-09 16:04:59,155 INFO MainThread:245660 [wandb_init.py:init():787] starting run threads in backend +2023-07-09 16:04:59,193 INFO MainThread:245660 [wandb_run.py:_console_start():2158] atexit reg +2023-07-09 16:04:59,194 INFO MainThread:245660 [wandb_run.py:_redirect():2013] redirect: SettingsConsole.WRAP_RAW +2023-07-09 16:04:59,194 INFO MainThread:245660 [wandb_run.py:_redirect():2078] Wrapping output streams. +2023-07-09 16:04:59,194 INFO MainThread:245660 [wandb_run.py:_redirect():2103] Redirects installed. +2023-07-09 16:04:59,194 INFO MainThread:245660 [wandb_init.py:init():829] run started, returning control to user process +2023-07-09 16:04:59,194 INFO MainThread:245660 [wandb_config.py:__setitem__():151] config set learning_rate = 0.0001 - <bound method Run._config_callback of <wandb.sdk.wandb_run.Run object at 0x15078d55c9a0>> +2023-07-09 16:04:59,194 INFO MainThread:245660 [wandb_run.py:_config_callback():1286] config_cb learning_rate 0.0001 None +2023-07-09 16:04:59,195 INFO MainThread:245660 [wandb_config.py:__setitem__():151] config set optimizer = AdamW - <bound method Run._config_callback of <wandb.sdk.wandb_run.Run object at 0x15078d55c9a0>> +2023-07-09 16:04:59,195 INFO MainThread:245660 [wandb_run.py:_config_callback():1286] config_cb optimizer AdamW None +2023-07-09 16:12:48,045 INFO MainThread:245660 [wandb_run.py:_finish():1893] finishing run deep-lab-/Unconditional Landscapes/humans +2023-07-09 16:12:48,046 INFO MainThread:245660 [wandb_run.py:_atexit_cleanup():2127] got exitcode: 1 +2023-07-09 16:12:48,046 INFO MainThread:245660 [wandb_run.py:_restore():2110] restore +2023-07-09 16:12:48,046 INFO MainThread:245660 [wandb_run.py:_restore():2116] restore done +2023-07-09 16:12:51,382 INFO MainThread:245660 [wandb_run.py:_footer_history_summary_info():3469] rendering history +2023-07-09 16:12:51,382 INFO MainThread:245660 [wandb_run.py:_footer_history_summary_info():3501] rendering summary +2023-07-09 16:12:51,393 INFO MainThread:245660 [wandb_run.py:_footer_sync_info():3428] logging synced files diff --git a/wandb/run-20230709_160458-humans/run-humans.wandb b/wandb/run-20230709_160458-humans/run-humans.wandb new file mode 100644 index 0000000000000000000000000000000000000000..a0b01bc403fc2f64bee2e5b03c0fb71d4e85061a GIT binary patch literal 199808 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 literal 0 HcmV?d00001 diff --git a/wandb/wandb-resume.json b/wandb/wandb-resume.json new file mode 100644 index 0000000..23e13a9 --- /dev/null +++ b/wandb/wandb-resume.json @@ -0,0 +1 @@ +{"run_id": "humans"} \ No newline at end of file -- GitLab